请参阅上面的快照。我想在工具栏1中添加命令,但是它们会进入toolbar2。 这是我的plugin.xml,
<menuContribution
allPopups="false"
locationURI="toolbar:org.eclipse.ui.main.toolbar">
<toolbar
id="my.toolbar">
<command
commandId="my.open"
label="Open"
style="push">
</command>
<command
commandId="my.save"
label="Save"
style="push">
</command>
<command
commandId="my.exit"
label="Exit"
style="push">
</command>
</toolbar>
</menuContribution>
我知道locationURI或工具栏ID不正确。但我不知道工具栏1的ID。 请帮我看看这个问题。
答案 0 :(得分:1)
这是系统中的一个错误,在窗口创建过程中没有在正确的时间应用menuContribution。您可以在https://bugs.eclipse.org/bugs/enter_bug.cgi?product=Platform&component=UI
处打开错误如果你要设置save&amp;恢复为真,在恢复时它可能在正确的位置(但它仍然应该得到修复)。