I have a notification icon with a ContextMenu attached (rather than a ContextMenuStrip, in order to keep the Windows look-and-feel), as detailed here.
How can I add an icon to the context menu items?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
If you have to use a MenuItem, you’ll have to draw the menuitem yourself and add an image. For that, set the
OwnerDrawproperty to true and subscribe to theDrawItemevent.Or
You can derive your own MenuItem class:
For specific links on how to draw on the MenuItem see here and here