标签: java
我有一个
private Button testSomethingCheckBox; testSomethingCheckBox= new Button(parent, SWT.CHECK);
我想在调用另一个函数时检查(激活)它吗?有线索吗?
答案 0 :(得分:1)
您可能希望阅读此documentation 至于你的问题,当你打电话给你想要的功能时,请使用testSomethingCheckBox.setSelection(true);。
testSomethingCheckBox.setSelection(true);