我可以以CommandContributionItem
编程方式创建如下:
CommandContributionItemParameter param = new CommandContributionItemParameter(serviceLocator, id, commandId, CommandContributionItem.STYLE_PUSH);
CommandContributionItem item = new CommandContributionItem(this);
如果我将样式更改CommandContributionItem.STYLE_PUSH
为CommandContributionItem.STYLE_PULLDOWN
然后我可以在工具栏中创建下拉菜单而不是按钮。
现在我的问题是我将如何填写items
这个ContributionItem
。对象上已经存在填充方法,CommandContributionItem
但我想将其他CommandContributionItem
对象输入为menu items
. 我将如何做到这一点?