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); } }
public static void LClick(this KPoint point) { MouseService.LeftClick(WindowsHandle, point.X, point.Y); }