How can i capture all user raised events in my application, is there any specific event which is parrent for all of user based(raised) events ?
eg :
mouse click,
key press,
etc.,
these all events are raised by user can i able to capture it under one method???
If you’re using Windows forms .NET, add the following to your main application form:
Just add any extra events you require (such as KeyPress, MouseEnter, MouseDown etc) in a similar manner. This is a bit cleaner and simpler then delving into the Windows API.