我正在使用VS。
在C#中使用winforms应用程序我知道我可以在设计师的ToolStripMenuItem
中添加MenuStrip
,如下所示:
this.mnuFile = new System.Windows.Forms.ToolStripMenuItem();
this.MainMenu1 = new System.Windows.Forms.MenuStrip();
this.MainMenu1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.mnuFile,
});
我知道我不能简单地将它添加到AddRange
,因为它们是不同的类型。是否可以通过其他方式向ToolStripDropDownMenu
添加MenuStrip
?
this.mnuEdit = new System.Windows.Forms.ToolStripDropDownMenu();