Blake.NUI.WPF.Gestures.DoubleTapGestureEngine.AbortGesture C# (CSharp) 메소드

AbortGesture() 공개 메소드

public AbortGesture ( ) : void
리턴 void
    public void AbortGesture()
    {
      if (IsAborted || IsCompleted)
        return;

      IsAborted = true;
      _timer.Stop();
      firstTap.AbortGesture();
      secondTap.AbortGesture();

      OnGestureAborted();
    }