16 references to StylusInAirMoveEvent
PresentationCore (15)
System\Windows\Generated\ContentElement.cs (3)
1348public static readonly RoutedEvent StylusInAirMoveEvent = Stylus.StylusInAirMoveEvent.AddOwner(_typeofThis); 1355add { AddHandler(Stylus.StylusInAirMoveEvent, value, false); } 1356remove { RemoveHandler(Stylus.StylusInAirMoveEvent, value); }
System\Windows\Generated\UIElement.cs (4)
764EventManager.RegisterClassHandler(type, Stylus.StylusInAirMoveEvent, new StylusEventHandler(UIElement.OnStylusInAirMoveThunk), false); 3301public static readonly RoutedEvent StylusInAirMoveEvent = Stylus.StylusInAirMoveEvent.AddOwner(_typeofThis); 3308add { AddHandler(Stylus.StylusInAirMoveEvent, value, false); } 3309remove { RemoveHandler(Stylus.StylusInAirMoveEvent, value); }
System\Windows\Generated\UIElement3D.cs (3)
1067public static readonly RoutedEvent StylusInAirMoveEvent = Stylus.StylusInAirMoveEvent.AddOwner(_typeofThis); 1074add { AddHandler(Stylus.StylusInAirMoveEvent, value, false); } 1075remove { RemoveHandler(Stylus.StylusInAirMoveEvent, value); }
System\Windows\Input\Stylus\Common\Stylus.cs (2)
202UIElement.AddHandler(element, StylusInAirMoveEvent, handler); 212UIElement.RemoveHandler(element, StylusInAirMoveEvent, handler);
System\Windows\Input\Stylus\Common\StylusLogic.cs (1)
604return Stylus.StylusInAirMoveEvent;
System\Windows\Input\Stylus\Wisp\WispLogic.cs (1)
2869|| routedEvent == Stylus.StylusInAirMoveEvent))
System\Windows\Input\Stylus\Wisp\WispStylusDevice.cs (1)
1774else if (stylusEvent == Stylus.StylusInAirMoveEvent)
PresentationFramework (1)
MS\Internal\Ink\EditingCoordinator.cs (1)
49_inkCanvas.AddHandler(Stylus.StylusInAirMoveEvent, new StylusEventHandler(OnInkCanvasStylusInAirOrInRangeMove));