Example #1
0
 public static void MoveMouse(int x0, int y0)
 {
     InputUtil.MoveMouse(x0, y0);
 }
Example #2
0
 private static void sendcaptureKeys()
 {
     InputUtil.SendKeyPress(VK.VK_SNAPSHOT);
     _captureEvent.Set();
 }
Example #3
0
 public static void ClickMouse(int x0, int y0)
 {
     InputUtil.ClickMouse(x0, y0);
 }
Example #4
0
 public static void SendKeyPress(VK key)
 {
     InputUtil.SendKeyPress(key);
 }