Ejemplo n.º 1
0
 private void Page_PointerExited(object sender, PointerRoutedEventArgs e)
 {
     if (e.Pointer.PointerDeviceType == Windows.Devices.Input.PointerDeviceType.Touch || e.Pointer.PointerDeviceType == Windows.Devices.Input.PointerDeviceType.Pen)
     {
         tap = !tap;
         if (tap)
         {
             PointerOut.Begin();
         }
     }
     else
     {
         PointerOut.Begin();
     }
 }
Ejemplo n.º 2
0
 private void LocatePanel_PointerExited(object sender, Windows.UI.Xaml.Input.PointerRoutedEventArgs e)
 {
     PointerOut.Begin();
 }