我需要将复选框dropdownlist添加到eclipse插件中,我想添加复选框dropdownlist,它与eclipse ide“自定义透视按钮”下拉列表相同,它看起来像这样http://s15.postimg.org/vwr4wk77f/dropdown.png
我使用plugin.xml创建了我的eclipse插件,我是xml的新手,所以我设法用下拉列表创建插件,但我找不到xml中的一个元素可以帮助我复选框
我几乎在每个网站上都搜索过信息或帮助,我没有找到任何可以提供帮助的信息,所以,如果你能给我建议,我真的很感激。
我的插件代码如下所示:
<plugin>
<extension point="org.eclipse.ui.menus">
<menuContribution locationURI="toolbar:org.eclipse.ui.main.toolbar?after=additions">
<toolbar id="my.Toolbar">
</toolbar>
</menuContribution>
</extension>
<extension point="org.eclipse.ui.commands">
<category
id="TRE.projects.commands.category"
name="%category.name.0">
</category>
<category
id="TRE.projects.commands.MultiCategory"
name="MultiCategory">
</category>
<command
name="Configuration1"
categoryId="TRE.projects.commands.MultiCategory"
id="my.command1">
</command>
<command
name="Configuration2"
categoryId="TRE.projects.commands.MultiCategory"
id="my.command2">
</command>
</extension>
<extension point="org.eclipse.ui.handlers">
<handler
commandId="my.command1"
class="TRE.projects.handlers.SampleHandler">
</handler>
<handler
commandId="my.command2"
class="TRE.projects.handlers.SampleHandler">
</handler>
</extension>
<extension point="org.eclipse.ui.menus">
<menuContribution locationURI="toolbar:my.Toolbar?after=additions">
<command
commandId="my.command1"
icon="icons/sample.gif"
id="my.Toolbar.command1"
style="pulldown"
tooltip="TRE Plugin">
</command>
</menuContribution>
<menuContribution
locationURI="menu:org.eclipse.ui.main.popup?after=additions">
<menu
id="TRE.projects.menus.sampleMenu"
label="%menu.label.0"
mnemonic="%menu.mnemonic.0">
<command
commandId="TRE.projects.commands.sampleCommand"
id="TRE.projects.menus.sampleCommand"
mnemonic="%command.mnemonic.0"
style="toggle">
</command>
</menu>
</menuContribution>
答案 0 :(得分:2)
您需要将command
元素添加到menuContribution
并使用style=toggle
属性。
<menuContribution
locationURI="toolbar:org.eclipse.ui.main.toolbar?after=additions">
<command
commandId="my.command1"
label="Simple Item"
style="toggle">
</command>
</menuContribution>