Top "Menustrip" questions

This tag can be used in questions involving usage of MenuStrip class from Windows Forms (a GUI class library in the Microsoft .NET Framework).

Adding a horizontal separator in a MenuStrip

I can't seem to find any way to add a horizontal separator in a MenuStrip. Visual Studio complains Cannot add …

c# .net-3.5 menustrip
How to change the appearance of a MenuStrip

I add a MenuStrip in my app and is add on ManagerRenderMode at Render Mode. The problem is with the …

c# border items appearance menustrip
How to Add Sub Items to a MenuStrip's ToolStripMenuItem in C#

I have added a menustrip1 into my windows form and I statically added one toolstripmenuitem (WindowstoolStripmenuItem) to that menustrip1. And …

c# winforms menustrip
Foreach every Subitem in a MenuStrip

I want to get all the SubItems of my MenuStrip, So I can change them all at once. I'am trying …

c# visual-studio foreach menustrip
Disabling a ToolStripMenuItem vs. disabling a MenuStrip.Item

When a user logs into my application, there are some menu items that I don't want every user to see. …

c# .net winforms menustrip
Move window without border

How do I move a window that does not have a border. There is no empty space on the application, …

c# move menustrip borderless
How to find toolstripmenuItem with name

I have set visible property of my menuStrip1 items to false as foreach (ToolStripMenuItem itm in menuStrip1.Items) { itm.Visible = …

c# menustrip toolstripdropdown toolstripmenu
Programmatically Adding Items To A Menu Strip?

Let's say I have a WinForm that has a menu strip in it. Let's say one of the items of …

c# winforms menustrip
How to add things to a menustrip programatically?

I want to add whatever is written in a textbox to a menustrip. In the File > Recent Searches thing …

c# winforms menustrip
Resize Width of MenuStrip

I want to put a gap between menustrip and form at right of menuStrip. I used autosize= false and new …

c# winforms menustrip