tsmolskow
asked on
C# .NET MainMenu Control - How do you add menu item icons?
I'm working with the MainMenu control in C# .NET (NOT the toolbar control). I want to add icons to the left of the menu items (in Office XP style) but I can't find a way to do that - can you help?
ASKER CERTIFIED SOLUTION
membership
Create a free account to see this answer
Signing up is free and takes 30 seconds. No credit card required.
The .NET Framework 2.0 contains a different control called MenuStrip. It allows adding images to the left of menu items.
If you consider upgrading, then you can download only the Framework (for free of course), or you can try Visual Studio 2005 Express Edition (free development environments for .NET 2.0).
_______________
Nayer Naguib
If you consider upgrading, then you can download only the Framework (for free of course), or you can try Visual Studio 2005 Express Edition (free development environments for .NET 2.0).
_______________
Nayer Naguib
You must ownerdraw the items...
Here you have some samples:
http://www.codeproject.com/cs/menu/menuimage.asp
http://www.codeproject.com/cs/menu/MenuExtender.asp
http://www.codeproject.com/vb/net/VbNetOwnerDrawMenu.asp
Alex :p