based on .designer.cs, i infer that the menu's arrangement is based on the order you add them on menuStrip's AddRange method:
this.menuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.windowsMenu,
this.helpMenu});
is there a way i can change the order of menu? i put dynamically generated menu in my code, they always appear after the helpMenu, is there a way i can re-order the menu?