I want to retrieve mouse information to my C# application, the information includes:
- when Mouse position changes
- When Mouse Clicks
- When scroll wheel used or clicked
I have been able to find out how to get the mouse position from this question , but for other mouse information, I don't know yet. but I do know that I must use win api for that.
UPDATE: I need the information globally, not over my form or my controls, in fact my form is hidden , I just need to store mouse information during my application running.