我有一个 RadioGroupFieldEditor 字段和一个用于在我的应用程序中选择数据类型的浏览器,用户可以选择数据类型的单选按钮,也可以使用浏览按钮选择新的数据类型。如果用户选择一个单选按钮,然后单击浏览按钮,我想删除 RadioGroupFieldEditor 的选择。我怎样才能做到这一点
问问题
504 次
1 回答
2
Button
您可以通过遍历 的子级来设置个人 s 的选择RadioGroupFieldEditor
。这有点hacky,但我没有看到更简单的方法:
public static void main(String[] args) {
final Display display = new Display();
final Shell shell = new Shell(display);
shell.setLayout(new FillLayout());
String[][] radioButtonOptions = new String[][] { { "Button1", "button1" }, { "Button2", "button2" } };
final RadioGroupFieldEditor radioButtonGroup = new RadioGroupFieldEditor("PrefValue", "Choose Button1 or Button2", 2, radioButtonOptions, shell, true);
Button button = new Button(shell, SWT.PUSH);
button.setText("Deselect");
button.addListener(SWT.Selection, new Listener() {
@Override
public void handleEvent(Event arg0) {
Composite temp = radioButtonGroup.getRadioBoxControl(shell);
Control[] children = temp.getChildren();
for(Control child : children)
{
if(child instanceof Button)
{
((Button)child).setSelection(false);
}
}
}
});
shell.pack();
shell.open();
while (!shell.isDisposed()) {
if (!display.readAndDispatch()) {
display.sleep();
}
}
display.dispose();
}
于 2012-09-18T10:50:02.403 回答