Hi bpeikes,
You can go the .Designer.cs file and add the items to the MenuStrip in the following way in the InitializeComponent() method:
private void InitializeComponent()
{
this.menuStrip1 = new System.Windows.Forms.MenuStrip();
this.aaaToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.bbbbToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.bbbToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.bbbbToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
this.aaaToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
this.bbbbToolStripMenuItem2 = new System.Windows.Forms.ToolStripMenuItem();
this.menuStrip1.SuspendLayout();
this.SuspendLayout();
//
// menuStrip1
//
this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.aaaToolStripMenuItem1,
this.bbbbToolStripMenuItem2}); this.menuStrip1.Location = new System.Drawing.Point(0, 0);
this.menuStrip1.Name = "menuStrip1";
this.menuStrip1.Size = new System.Drawing.Size(489, 24);
this.menuStrip1.TabIndex = 0;
this.menuStrip1.Text = "menuStrip1";
.....
}
Best Regards,
Zhi-Xin
Please remember to mark the replies as answers if they help and unmark them if they provide no help.
Welcome to the All-In-One Code Framework! If you have any feedback, please tell us.
Send us any feedback you have about the help from MSFT at
fbmsdn@microsoft.com.