Inheritance: System.Windows.Input.TouchDevice
Exemplo n.º 1
0
 private void PromoteToTouchUp()
 {
     if (promotionTouchDevice == null)
     {
         PromoteToTouchDown();
     }
     promotionTouchDevice.TouchUp(lastHandPointEventArgs);
     promotionTouchDevice = null;
 }
Exemplo n.º 2
0
 private void PromoteToTouchDown()
 {
     if (promotionTouchDevice == null)
     {
         promotionTouchDevice = new MotionTrackingTouchDevice(lastHandPointEventArgs, rootWindow, screen);
     }
     promotionTouchDevice.TouchDown(lastHandPointEventArgs);
 }