将 Eclipse 命令绑定/绑定到 swt 按钮
在 Eclipse 中,您可以使用菜单贡献来添加将调用命令的工具栏按钮和菜单。除了以编程方式调用命令 onclick 之外,还有什么方法可以对普通 swt 按钮执行此操作吗?
In Eclipse you can use menu contributions to add toolbar buttons and menus that will call a command. Is there any way to do this to normal swt buttons, apart from programmatically calling the command onclick?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
不可以。您必须侦听按钮事件并以编程方式调用命令。
No. You have to listen for the button event and the invoke the command programmatically.
您可以在视图或向导中使用 CommandContributionItems,如下所示:
You can use CommandContributionItems in a View or Wizard like that: