目前我尝试将不同的合并ToolStripMenuItems
为一个MenuStrip
。因此,我创建了一个名为IMenu
. 这包括ToolStripMenuItem
来自 MEF 插件的一个,并且应该加载到主窗口菜单条中。问题是,如果我运行应用程序,我会得到MenuStrip
两个具有相同名称的 DropDown 元素。但我想要的是我可以将 MEF 插件的菜单绑定到应用程序的 MenuStrip 中而无需重复输入,例如如何为 MEF 插件制作一个好的菜单结构?
示例:我从主应用程序中获得了此条目
文件
|--> 新建
|--> 保存
|--> 导入
|--> 导出
然后我为导入/导出特定类型创建了一个插件。因此,我必须在导入/导出下动态添加菜单条目。但是怎么做?你的解决方案如何?
文件
|--> 新建
|--> 保存
|--> 导入
|--> 到 Word
|--> 导出
|--> 从 Word
这是我的代码:首先是插件的接口
public interface IMenu
{
ToolStripMenuItem ToolStripItem { get; }
}
这是菜单项的插件示例
帮助
|--> 更新
[Export(typeof(IMenu))]
class UpdateMenuItems : IMenu
{
System.Windows.Forms.ToolStripMenuItem helpMenuItem;
System.Windows.Forms.ToolStripMenuItem updateMenuItem;
public System.Windows.Forms.ToolStripMenuItem ToolStripItem
{
get { return helpMenuItem; }
}
public UpdateMenuItems()
{
InitializeComponent();
}
private void InitializeComponent()
{
this.updateMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.updateMenuItem.Name = "Update";
this.updateMenuItem.Size = new System.Drawing.Size(94, 20);
this.updateMenuItem.Text = "Update";
this.updateMenuItem.MergeIndex = 1;
this.updateMenuItem.MergeAction = System.Windows.Forms.MergeAction.Insert;
this.updateMenuItem.Click += updateMenuItem_Click;
this.helpMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.helpMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.updateMenuItem});
this.helpMenuItem.Name = "aboutToolStripMenuItem";
this.helpMenuItem.Size = new System.Drawing.Size(44, 20);
this.helpMenuItem.MergeAction = System.Windows.Forms.MergeAction.Insert;
this.helpMenuItem.Text = "Help";
}
void updateMenuItem_Click(object sender, EventArgs e)
{
UpdateController update = new UpdateController();
update.Execute();
}
这是另一个 MEF 插件,它也具有根元素“帮助”
[Export(typeof(IMenu))]
class MenuItem : IMenu
{
public ToolStripMenuItem ToolStripItem
{
get { return testItem; }
}
private System.Windows.Forms.ToolStripMenuItem testItem;
private System.Windows.Forms.ToolStripMenuItem unterpunk1;
private System.Windows.Forms.ToolStripMenuItem unterpunk2;
public MenuItem()
{
InitializeComponent();
}
public void InitializeComponent()
{
this.testItem = new System.Windows.Forms.ToolStripMenuItem();
this.testItem.Name = "aboutToolStripMenuItem";
this.testItem.Size = new System.Drawing.Size(94, 20);
this.testItem.Text = "Help";
this.testItem.Click += testItem_Click;
unterpunk1 = new ToolStripMenuItem();
unterpunk1.Text = "Speichern";
unterpunk1.MergeAction = MergeAction.Insert;
unterpunk1.MergeIndex = 1;
testItem.DropDownItems.Add(unterpunk1);
unterpunk2 = new ToolStripMenuItem();
unterpunk2.Text = "Prüfen";
unterpunk2.MergeAction = MergeAction.Insert;
unterpunk2.MergeIndex = 2;
testItem.DropDownItems.Add(unterpunk2);
}
void testItem_Click(object sender, EventArgs e)
{
//
}
在我的主窗体中,我将所有内容添加到 MenuStrip。
foreach (var item in MenuItems)
{
this.menuStrip1.Items.Add(item.ToolStripItem);
}
ToolStripMenuItems
不自动合并?