Blake.NUI.WPF.Gestures.HoldGestureEngine.TrackTouchDown C# (CSharp) Méthode

TrackTouchDown() public méthode

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

      this.StartPoint = position;
      IsStarted = true;

      OnGestureStarted();

      _timer.Start();
    }