16 references to StylusInAirMoveEvent
PresentationCore (15)
System\Windows\Generated\ContentElement.cs (3)
1354public static readonly RoutedEvent StylusInAirMoveEvent = Stylus.StylusInAirMoveEvent.AddOwner(_typeofThis); 1361add { AddHandler(Stylus.StylusInAirMoveEvent, value, false); } 1362remove { RemoveHandler(Stylus.StylusInAirMoveEvent, value); }
System\Windows\Generated\UIElement.cs (4)
770EventManager.RegisterClassHandler(type, Stylus.StylusInAirMoveEvent, new StylusEventHandler(UIElement.OnStylusInAirMoveThunk), false); 3307public static readonly RoutedEvent StylusInAirMoveEvent = Stylus.StylusInAirMoveEvent.AddOwner(_typeofThis); 3314add { AddHandler(Stylus.StylusInAirMoveEvent, value, false); } 3315remove { RemoveHandler(Stylus.StylusInAirMoveEvent, value); }
System\Windows\Generated\UIElement3D.cs (3)
1075public static readonly RoutedEvent StylusInAirMoveEvent = Stylus.StylusInAirMoveEvent.AddOwner(_typeofThis); 1082add { AddHandler(Stylus.StylusInAirMoveEvent, value, false); } 1083remove { RemoveHandler(Stylus.StylusInAirMoveEvent, value); }
System\Windows\Input\Stylus\Common\Stylus.cs (2)
207UIElement.AddHandler(element, StylusInAirMoveEvent, handler); 217UIElement.RemoveHandler(element, StylusInAirMoveEvent, handler);
System\Windows\Input\Stylus\Common\StylusLogic.cs (1)
621return Stylus.StylusInAirMoveEvent;
System\Windows\Input\Stylus\Wisp\WispLogic.cs (1)
2878|| routedEvent == Stylus.StylusInAirMoveEvent))
System\Windows\Input\Stylus\Wisp\WispStylusDevice.cs (1)
1808else if (stylusEvent == Stylus.StylusInAirMoveEvent)
PresentationFramework (1)
MS\Internal\Ink\EditingCoordinator.cs (1)
64_inkCanvas.AddHandler(Stylus.StylusInAirMoveEvent, new StylusEventHandler(OnInkCanvasStylusInAirOrInRangeMove));