I need to control other application by simulating mouse movement and keyboard input. How do I accomplish this in C#? Is it even possible?
|
3
|
|||||
|
|
|
Have you looked at White? Sample code:
I don't think it can get better than that. The library is created by ThoughtWorks. |
||||||
|
|
|
See "To send a keystroke to a different application" on this page: |
||
|
|
|
|
Use the SendMessage Native Win32 API. DllImport this method from the User32.dll. You can use this API to send both keyboard & mouse messages |
||
|
|
|
|
You can use p/invoke, I stole the following code for mouse clicks in random spots on a button with a known handle:
|
||
|
|
|
|
how can i use the metod mouseAction?? what namespace i need import?? |
||
|
