I have a ComboBox in a Winforms C# project. When the user right clicks the ComboBox to bring up a context menu, then selects an item (left click) from the default ContextMenuStrip, I want to be able to capture that event. Which event should I handle?
Is it possible to do this without making my own custom ContextMenuStrip? If I have to make my own, is there a good way to use the Windows default ContextMenuStrip as a starting point?
Edit: This question is similar: Add item to the default TextBox context menu
But it is talking about adding items to the default menu. I am asking about capturing events selecting an item from the default context menu. If I need to make a custom ContextMenuStrip to do this, that is fine, please answer that way.