示例#1
0
 public static void LClick(this KPoint point, int times)
 {
     for (int i = 0; i < times; i++)
     {
         MouseService.LeftClick(WindowsHandle, point.X, point.Y);
         Thread.Sleep(100);
     }
 }
示例#2
0
 public static void LClick(this KPoint point)
 {
     MouseService.LeftClick(WindowsHandle, point.X, point.Y);
 }