How do you get images in menu?
-
My C# app has a RichTextBox which is using a right-click context menu. How can I add icons next to the text in the menu? I found a few places that said they had add-ins to do this, but I'd rather just understand how it works to do it myself. Can anybody explain it, or point to a resource which explains it? Thanks.
There are only 10 types of people in this world....those that understand binary, and those that do not.
-
My C# app has a RichTextBox which is using a right-click context menu. How can I add icons next to the text in the menu? I found a few places that said they had add-ins to do this, but I'd rather just understand how it works to do it myself. Can anybody explain it, or point to a resource which explains it? Thanks.
There are only 10 types of people in this world....those that understand binary, and those that do not.
Windows Forms (at least in .NET 1.0) does not allow that. You'll need to use a library such as Lutz Roeder's CommandBar for .NET[^]. Cheers, Arun