23 references to StylusMoveEvent
PresentationCore (21)
System\Windows\Generated\ContentElement.cs (3)
1299public static readonly RoutedEvent StylusMoveEvent = Stylus.StylusMoveEvent.AddOwner(_typeofThis); 1306add { AddHandler(Stylus.StylusMoveEvent, value, false); } 1307remove { RemoveHandler(Stylus.StylusMoveEvent, value); }
System\Windows\Generated\UIElement.cs (4)
751EventManager.RegisterClassHandler(type, Stylus.StylusMoveEvent, new StylusEventHandler(UIElement.OnStylusMoveThunk), false); 3252public static readonly RoutedEvent StylusMoveEvent = Stylus.StylusMoveEvent.AddOwner(_typeofThis); 3259add { AddHandler(Stylus.StylusMoveEvent, value, false); } 3260remove { RemoveHandler(Stylus.StylusMoveEvent, value); }
System\Windows\Generated\UIElement3D.cs (3)
1027public static readonly RoutedEvent StylusMoveEvent = Stylus.StylusMoveEvent.AddOwner(_typeofThis); 1034add { AddHandler(Stylus.StylusMoveEvent, value, false); } 1035remove { RemoveHandler(Stylus.StylusMoveEvent, value); }
System\Windows\Input\Stylus\Common\Stylus.cs (2)
152UIElement.AddHandler(element, StylusMoveEvent, handler); 162UIElement.RemoveHandler(element, StylusMoveEvent, handler);
System\Windows\Input\Stylus\Common\StylusLogic.cs (1)
596return Stylus.StylusMoveEvent;
System\Windows\Input\Stylus\Pointer\PointerLogic.cs (2)
971(routedEvent == Stylus.StylusMoveEvent || 1128if (stylusEventArgs.RoutedEvent == Stylus.StylusMoveEvent)
System\Windows\Input\Stylus\Wisp\WispLogic.cs (5)
1323if (e.StagingItem.Input.RoutedEvent == Stylus.StylusMoveEvent) 1529(routedEvent == Stylus.StylusMoveEvent || 1547if (stylusEventArgs.RoutedEvent == Stylus.StylusMoveEvent) 1597storedStagingItems[stagingItemCount - 1].Input.RoutedEvent == Stylus.StylusMoveEvent) 2889|| routedEvent == Stylus.StylusMoveEvent
System\Windows\Input\Stylus\Wisp\WispStylusDevice.cs (1)
1794else if (stylusEvent == Stylus.StylusMoveEvent)
PresentationFramework (2)
MS\Internal\Ink\EditingCoordinator.cs (2)
958_inkCanvas.AddHandler(Stylus.StylusMoveEvent, new StylusEventHandler(OnInkCanvasDeviceMove<StylusEventArgs>)); 1011_inkCanvas.RemoveHandler(Stylus.StylusMoveEvent, new StylusEventHandler(OnInkCanvasDeviceMove<StylusEventArgs>));