16 references to StylusInAirMoveEvent
PresentationCore (15)
System\Windows\Generated\ContentElement.cs (3)
1336public static readonly RoutedEvent StylusInAirMoveEvent = Stylus.StylusInAirMoveEvent.AddOwner(_typeofThis); 1343add { AddHandler(Stylus.StylusInAirMoveEvent, value, false); } 1344remove { RemoveHandler(Stylus.StylusInAirMoveEvent, value); }
System\Windows\Generated\UIElement.cs (4)
752EventManager.RegisterClassHandler(type, Stylus.StylusInAirMoveEvent, new StylusEventHandler(UIElement.OnStylusInAirMoveThunk), false); 3289public static readonly RoutedEvent StylusInAirMoveEvent = Stylus.StylusInAirMoveEvent.AddOwner(_typeofThis); 3296add { AddHandler(Stylus.StylusInAirMoveEvent, value, false); } 3297remove { RemoveHandler(Stylus.StylusInAirMoveEvent, value); }
System\Windows\Generated\UIElement3D.cs (3)
1066public static readonly RoutedEvent StylusInAirMoveEvent = Stylus.StylusInAirMoveEvent.AddOwner(_typeofThis); 1073add { AddHandler(Stylus.StylusInAirMoveEvent, value, false); } 1074remove { RemoveHandler(Stylus.StylusInAirMoveEvent, value); }
System\Windows\Input\Stylus\Common\Stylus.cs (2)
201UIElement.AddHandler(element, StylusInAirMoveEvent, handler); 211UIElement.RemoveHandler(element, StylusInAirMoveEvent, handler);
System\Windows\Input\Stylus\Common\StylusLogic.cs (1)
597return Stylus.StylusInAirMoveEvent;
System\Windows\Input\Stylus\Wisp\WispLogic.cs (1)
2889|| routedEvent == Stylus.StylusInAirMoveEvent))
System\Windows\Input\Stylus\Wisp\WispStylusDevice.cs (1)
1778else if (stylusEvent == Stylus.StylusInAirMoveEvent)
PresentationFramework (1)
MS\Internal\Ink\EditingCoordinator.cs (1)
48_inkCanvas.AddHandler(Stylus.StylusInAirMoveEvent, new StylusEventHandler(OnInkCanvasStylusInAirOrInRangeMove));