I'm using a ContextMenuStrip
to show some options to the user when they mouse over cells in a table, by calling its Show(Control, int, int)
method from within a the table's MouseMove
event, passing the table in as the Control parameter.
If the app isn't active, everything works as intended; but if the app is active, then the MouseMove
events stop firing once the ContextMenuStrip
is shown.
How do I receive mouse move events while showing a ContextMenuStrip? I don't want to add hooks or an application filter, I just want the inactive-app behaviour even when the app is active.