Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Using a Windows 7 style menustrip in Windows Forms [duplicate]

Possible Duplicate:
Standard Windows menu bars in Windows Forms

I am using windows forms and when I use a MenuStrip item, I get something that looks like this:

http://imgkk.com/i/ggn1.png

Is it possible to use menu strips like the ones the system uses, like in Windows Explorer, or Firefox, for example:

http://imgkk.com/i/cxyg.png

with Windows Forms, or C# in general?

like image 640
Nilbert Avatar asked Dec 13 '22 21:12

Nilbert


2 Answers

Try using a MainMenu instead of a MenuStrip. The MainMenu will pick up the underlying operating system's current style, whereas the MenuStrip does not. Even though MainMenu was replaced with MenuStrip, it is still supported going forwards (according to the MSDN docs).

MenuStrip is rendered entirely in C# and does not use the current operating system's styles, whereas the MainMenu control renders using the underlying OS API and does.

MainMenu might not be in your toolbox. To add it, right click in the toolbox, select "Choose Items..." and then make sure the MainMenu item is checked.

This article explains the differences between MainMenu and MenuStrip in more depth.

like image 161
adrianbanks Avatar answered Feb 09 '23 01:02

adrianbanks


An alternative is to use a custom tool strip renderer,

http://code.google.com/p/szotar/source/browse/trunk/Client/Szotar.WindowsForms/Base/NativeToolStripRenderer.cs

like image 28
Lex Li Avatar answered Feb 09 '23 01:02

Lex Li