1
我試圖在菜單上以編程方式添加一些選項,我已經發現如何添加菜單「窗口」後的菜單,但我想在默認菜單中添加一個選項(更具體地說,在Window> Open Perspective中添加我的視角)。在擴展org.eclipse.plugin.menus插入項目的默認菜單
我不知道什麼是正確的LocationURL。
其實,我的擴展點配置這樣的:
<extension
point="org.eclipse.ui.menus">
<menuContribution
allPopups="false"
locationURI="menu:org.eclipse.ui.main.menu?after=window">
<menu
icon="icons/enmac.jpg"
id="enmac"
label="EnMac">
<command
commandId="EnMac.openPerspective"
icon="icons/enmac.jpg"
label="Open Perspective"
style="push"
tooltip="open">
</command>
</menu>
</menuContribution>
</extension>
哦..謝謝你......那個間諜工具救了我...... – 2012-08-02 10:52:50