How can I Turn Off Highlighting on ContextMenuStrip? I was wondering is it possible to turn off the highlighting when you move the mouse over a particular ToolStripMenuItem
in a ContextMenuStrip
Thanks Abhi
1 Reply
Know the answer? Post it — somebody with the same question will find it here.
You can derive your menu control from ContextMenu and set to OwnerDraw and you can override the default behavior. Its not that hard to do and I'm sure there are articles on here that will show you how this can be done. If I remember ContextMenuStrip does not allow you to do much in the way of doing much in the way of changing drawing behavior.
Mike HankeyPosted Jul 11, 2008, 6:28 PM
You can derive your menu control from ContextMenu and set to OwnerDraw and you can override the default behavior.
Its not that hard to do and I'm sure there are articles on here that will show you how this can be done. If I remember ContextMenuStrip does not allow you to do much in the way of doing much in the way of changing drawing behavior.
Mike