2014-02-18 95 views
-1

我正在使用eclipse 3.7.2(indigo release 2版本)。與我的工作相關,我需要在eclipse工具欄中添加一個新按鈕。 我已經搜索了很多。在所有提到的「使用locationURI:.....創建擴展點的新菜單貢獻」org.eclipse.ui.menus「但是如果我右鍵單擊org.eclipse.ui.menus-- >新的只有一個選項通用。 org.eclipse.ui.menus - > New - >中不存在「menucontribute」選項。請爲此提出一些解決方案。在eclipse中添加一個新的按鈕到工具欄3.7.2

最好的問候。

回答

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> 

您需要提供命令處理程序,以應對工具欄項目的選擇。

相關問題