gpt4 book ai didi

eclipse - 将 Eclipse 命令绑定(bind)/绑定(bind)到 swt 按钮

转载 作者:行者123 更新时间:2023-12-01 10:11:14 25 4
gpt4 key购买 nike

在 Eclipse 中,您可以使用菜单组件来添加将调用命令的工具栏按钮和菜单。除了以编程方式调用命令 onclick 之外,有什么方法可以对普通的 swt 按钮执行此操作吗?

最佳答案

button.addSelectionListener(new SelectionAdapter() {

@Override
public void widgetSelected(SelectionEvent e) {
IHandlerService handlerService = (IHandlerService) getSite()
.getService(IHandlerService.class);
try {
handlerService.executeCommand("my command id", null);
} catch (Exception ex) {
throw new RuntimeException("command with id \"my command id\" not found");
}

}
});

关于eclipse - 将 Eclipse 命令绑定(bind)/绑定(bind)到 swt 按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4738080/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com