23 references to StylusMoveEvent
PresentationCore (21)
System\Windows\Generated\ContentElement.cs (3)
1316public static readonly RoutedEvent StylusMoveEvent = Stylus.StylusMoveEvent.AddOwner(_typeofThis); 1323add { AddHandler(Stylus.StylusMoveEvent, value, false); } 1324remove { RemoveHandler(Stylus.StylusMoveEvent, value); }
System\Windows\Generated\UIElement.cs (4)
768EventManager.RegisterClassHandler(type, Stylus.StylusMoveEvent, new StylusEventHandler(UIElement.OnStylusMoveThunk), false); 3269public static readonly RoutedEvent StylusMoveEvent = Stylus.StylusMoveEvent.AddOwner(_typeofThis); 3276add { AddHandler(Stylus.StylusMoveEvent, value, false); } 3277remove { RemoveHandler(Stylus.StylusMoveEvent, value); }
System\Windows\Generated\UIElement3D.cs (3)
1037public static readonly RoutedEvent StylusMoveEvent = Stylus.StylusMoveEvent.AddOwner(_typeofThis); 1044add { AddHandler(Stylus.StylusMoveEvent, value, false); } 1045remove { RemoveHandler(Stylus.StylusMoveEvent, value); }
System\Windows\Input\Stylus\Common\Stylus.cs (2)
157UIElement.AddHandler(element, StylusMoveEvent, handler); 167UIElement.RemoveHandler(element, StylusMoveEvent, handler);
System\Windows\Input\Stylus\Common\StylusLogic.cs (1)
619return Stylus.StylusMoveEvent;
System\Windows\Input\Stylus\Pointer\PointerLogic.cs (2)
986(routedEvent == Stylus.StylusMoveEvent || 1143if (stylusEventArgs.RoutedEvent == Stylus.StylusMoveEvent)
System\Windows\Input\Stylus\Wisp\WispLogic.cs (5)
1321if (e.StagingItem.Input.RoutedEvent == Stylus.StylusMoveEvent) 1527(routedEvent == Stylus.StylusMoveEvent || 1545if (stylusEventArgs.RoutedEvent == Stylus.StylusMoveEvent) 1595storedStagingItems[stagingItemCount - 1].Input.RoutedEvent == Stylus.StylusMoveEvent) 2877|| routedEvent == Stylus.StylusMoveEvent
System\Windows\Input\Stylus\Wisp\WispStylusDevice.cs (1)
1823else if (stylusEvent == Stylus.StylusMoveEvent)
PresentationFramework (2)
MS\Internal\Ink\EditingCoordinator.cs (2)
982_inkCanvas.AddHandler(Stylus.StylusMoveEvent, new StylusEventHandler(OnInkCanvasDeviceMove<StylusEventArgs>)); 1035_inkCanvas.RemoveHandler(Stylus.StylusMoveEvent, new StylusEventHandler(OnInkCanvasDeviceMove<StylusEventArgs>));