I'm trying to create a windows forms program which makes the computer act as if I pressed a mouse-button. I want to control the events manually (timing is not decided in advance) and it needs to possible to press and hold, so the mouse-button release should be a separate event.
The following information should not change the code, just help you further understand my situation:
- The purpose is to allow user input from a Xbox 360 controller (compatible with PC) to steer/control the computer that it is connected to.
- The best solution that I have so far found is the "Windows.Forms.SendKeys" method but it only works for keyboard events.
Thanks in advance! :D