Blake.NUI.WPF.Gestures.HoldGestureEngine.TrackTouchDown C# (CSharp) Method

TrackTouchDown() public method

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

      this.StartPoint = position;
      IsStarted = true;

      OnGestureStarted();

      _timer.Start();
    }