Blake.NUI.WPF.Gestures.EngineHandler.AbortExistingEngineIfAny C# (CSharp) 메소드

AbortExistingEngineIfAny() 개인적인 메소드

private AbortExistingEngineIfAny ( System.Windows.Input.InputDevice device ) : void
device System.Windows.Input.InputDevice
리턴 void
    private void AbortExistingEngineIfAny(InputDevice device)
    {
      if (!engineStatuses.ContainsKey(device))
        return;
      var engine = engineStatuses[device];
      engine.AbortGesture();
      engineStatuses.Remove(device);
    }