23 references to StylusMoveEvent
PresentationCore (21)
System\Windows\Generated\ContentElement.cs (3)
1298public static readonly RoutedEvent StylusMoveEvent = Stylus.StylusMoveEvent.AddOwner(_typeofThis); 1305add { AddHandler(Stylus.StylusMoveEvent, value, false); } 1306remove { RemoveHandler(Stylus.StylusMoveEvent, value); }
System\Windows\Generated\UIElement.cs (4)
750EventManager.RegisterClassHandler(type, Stylus.StylusMoveEvent, new StylusEventHandler(UIElement.OnStylusMoveThunk), false); 3251public static readonly RoutedEvent StylusMoveEvent = Stylus.StylusMoveEvent.AddOwner(_typeofThis); 3258add { AddHandler(Stylus.StylusMoveEvent, value, false); } 3259remove { RemoveHandler(Stylus.StylusMoveEvent, value); }
System\Windows\Generated\UIElement3D.cs (3)
1028public static readonly RoutedEvent StylusMoveEvent = Stylus.StylusMoveEvent.AddOwner(_typeofThis); 1035add { AddHandler(Stylus.StylusMoveEvent, value, false); } 1036remove { RemoveHandler(Stylus.StylusMoveEvent, value); }
System\Windows\Input\Stylus\Common\Stylus.cs (2)
151UIElement.AddHandler(element, StylusMoveEvent, handler); 161UIElement.RemoveHandler(element, StylusMoveEvent, handler);
System\Windows\Input\Stylus\Common\StylusLogic.cs (1)
595return Stylus.StylusMoveEvent;
System\Windows\Input\Stylus\Pointer\PointerLogic.cs (2)
970(routedEvent == Stylus.StylusMoveEvent || 1127if (stylusEventArgs.RoutedEvent == Stylus.StylusMoveEvent)
System\Windows\Input\Stylus\Wisp\WispLogic.cs (5)
1322if (e.StagingItem.Input.RoutedEvent == Stylus.StylusMoveEvent) 1528(routedEvent == Stylus.StylusMoveEvent || 1546if (stylusEventArgs.RoutedEvent == Stylus.StylusMoveEvent) 1596storedStagingItems[stagingItemCount - 1].Input.RoutedEvent == Stylus.StylusMoveEvent) 2888|| routedEvent == Stylus.StylusMoveEvent
System\Windows\Input\Stylus\Wisp\WispStylusDevice.cs (1)
1793else if (stylusEvent == Stylus.StylusMoveEvent)
PresentationFramework (2)
MS\Internal\Ink\EditingCoordinator.cs (2)
957_inkCanvas.AddHandler(Stylus.StylusMoveEvent, new StylusEventHandler(OnInkCanvasDeviceMove<StylusEventArgs>)); 1010_inkCanvas.RemoveHandler(Stylus.StylusMoveEvent, new StylusEventHandler(OnInkCanvasDeviceMove<StylusEventArgs>));