具体不知道为什么,但是你拖两个,三个,多个menustrip上去试试。。。然后messagebox一下这个MainMenuStrip的属性看看。。。
MainMeunStrip 是一个菜单控件。
使用控件你可以在界面上进行操作,如增加一个子菜单等,将会自动生成很多代码:
this.menuStrip1 = new System.Windows.Forms.MenuStrip();
this.toolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
this.menuStrip1.SuspendLayout();
this.SuspendLayout();
//
// menuStrip1
//
this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.toolStripMenuItem1});
this.menuStrip1.Location = new System.Drawing.Point(0, 0);
this.menuStrip1.Name = "menuStrip1";
this.menuStrip1.Size = new System.Drawing.Size(284, 25);
this.menuStrip1.TabIndex = 0;
this.menuStrip1.Text = "menuStrip1";
手工编码是很费事的。
它相当于ToolStrip,可以放很多的Menu上去。