Blake.NUI.WPF.Gestures.HoldGestureEngine.TrackTouchMove C# (CSharp) 메소드

TrackTouchMove() 공개 메소드

public TrackTouchMove ( Point position, System.DateTime timestamp ) : void
position Point
timestamp System.DateTime
리턴 void
    public void TrackTouchMove(Point position, DateTime timestamp)
    {
      if (IsCompleted || IsAborted)
        return;

      Vector delta = position - StartPoint;
      if (delta.Length > _maxMovement)
      {
        AbortGesture();
      }
    }