I'm creating C# WinForm application and want to hook mouse move event that beneath child controls. Found one solution but required to hook every control's mouse move event and my child controls also have its own mouse move event. So is it possible to hook mouse move event beneath controls with single event hook
Asked
Active
Viewed 94 times
0
-
you can hook to event for multiple times, so what's wrong with solution you find? – vasily.sib Aug 13 '18 at 09:23
-
i actually want single event hook if it is possible – Aug 13 '18 at 09:24
-
So what. You can attach as much handlers to single event as you need. – vasily.sib Aug 13 '18 at 09:26
-
Could you attach link to what you found or example of what you have tried so far? – Michal Šuvada Aug 13 '18 at 10:10
-
https://stackoverflow.com/questions/1719636/how-to-capture-mousemove-events-beneath-child-controls Difference is that the i want single event hook. – Aug 13 '18 at 10:34