The MouseDown
event isn't called when the mouse is over a child Control. I tried KeyPreview = true;
but it doesn't help (though it does for KeyDown
- keyboard clicks).
I'm looking for something like KeyPreview
, but for mouse events.
I rather not use IMessageFilter
and process the WinAPI message if there's a simpler. alternative (Also, IMessageFilter
is set Application-wide. I want Form-wide only.) And iterating over all child Controls, subscribing each, has its own disadvantages.