我正在尝试以编程方式将SWT按钮设置为“按下”状态。 这有可能吗?
更新:
我想要实现的目标是渲染在其选定状态下将一个Button绘制到一个图像上。
Image buttonimg_mouseover = new Image(getDisplay(), 100, 100);
Button button = new Button(parent.parent, SWT.PUSH);
button.setAlignment(SWT.CENTER);
button.setImage(arrowimg);
button.setSize(100, 100);
button.setSelection(true); // doesn't work
GC gcbutton = new GC(buttonimg_mouseover); //draw an image of the button
button.print(gcbutton);
答案 0 :(得分:8)
您可以使用以下代码段
执行此操作Button myButton = new Button(parent, SWT.TOGGLE);
myButton.setSelection(true);
但是,这仅适用于CHECK
,RADIO
或TOGGLE
类型。
请参阅Button#setSelection(boolean)
的Javadoc。