我知道这听起来像是一个非常基本的问题,问这个问题我感到很尴尬,但是...
如何将鼠标单击处理程序添加到SWT按钮?
我检查了什么:
选择是否在其他语言/框架中通常称为“OnClick”?还是我完全想念的其他东西?
最佳答案
是的,您要寻找的是SWT.Selection
或SelectionListener
:
Button button = new Button(shell, SWT.PUSH);
button.addListener(SWT.Selection, new Listener()
{
@Override
public void handleEvent(Event event)
{
System.out.println("SWT.Selection");
}
});
内部添加
SelectionListener
与上面的代码相同。可以将其称为选择,因为
Button
可以是复选框或单选按钮,具体取决于其样式。