示例#1
0
 public void Drag(int startX, int startY, int endX, int endY, int delayTime)
 {
     _touchScreen.Down(startX, startY);
     System.Threading.Thread.Sleep(delayTime);
     _touchScreen.Move(endX, endX);
     System.Threading.Thread.Sleep(delayTime);
     _touchScreen.Up(endX, endX);
 }
 public void Move(int x, int y)
 {
     _touchScreen.Move(x, y);
 }