我正在研究eclipse 3.7.2(indigo release 2版本)。与我的工作相关,我需要在eclipse工具栏中添加一个新按钮。 我google了很多。在所有文档中提到“使用locationURI:.....创建扩展点的新菜单贡献”org.eclipse.ui.menus“但是如果我右键单击org.eclipse.ui.menus-- >新的只有一个选项通用。 org.eclipse.ui.menus中没有选项“menucontribute” - >新 - > 。请为此提出一些解决方案。
最诚挚的问候。
答案 0 :(得分:1)
以下是一个例子:
<extension
point="org.eclipse.ui.menus">
<menuContribution
locationURI="toolbar:org.eclipse.ui.main.toolbar">
<toolbar
id="toolbar_id">
<command
commandId="command_id"
id="toolbarId"
label="%toolbar.new"
style="push"
tooltip="%toolbar.tooltip">
</command>
</toolbar>
</extension>
您需要提供命令处理程序来响应工具栏项目选择。