16 references to StylusInAirMoveEvent
PresentationCore (15)
System\Windows\Generated\ContentElement.cs (3)
1352public static readonly RoutedEvent StylusInAirMoveEvent = Stylus.StylusInAirMoveEvent.AddOwner(_typeofThis); 1359add { AddHandler(Stylus.StylusInAirMoveEvent, value, false); } 1360remove { RemoveHandler(Stylus.StylusInAirMoveEvent, value); }
System\Windows\Generated\UIElement.cs (4)
768EventManager.RegisterClassHandler(type, Stylus.StylusInAirMoveEvent, new StylusEventHandler(UIElement.OnStylusInAirMoveThunk), false); 3305public static readonly RoutedEvent StylusInAirMoveEvent = Stylus.StylusInAirMoveEvent.AddOwner(_typeofThis); 3312add { AddHandler(Stylus.StylusInAirMoveEvent, value, false); } 3313remove { RemoveHandler(Stylus.StylusInAirMoveEvent, value); }
System\Windows\Generated\UIElement3D.cs (3)
1073public static readonly RoutedEvent StylusInAirMoveEvent = Stylus.StylusInAirMoveEvent.AddOwner(_typeofThis); 1080add { AddHandler(Stylus.StylusInAirMoveEvent, value, false); } 1081remove { 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)
614return Stylus.StylusInAirMoveEvent;
System\Windows\Input\Stylus\Wisp\WispLogic.cs (1)
2878|| routedEvent == Stylus.StylusInAirMoveEvent))
System\Windows\Input\Stylus\Wisp\WispStylusDevice.cs (1)
1777else if (stylusEvent == Stylus.StylusInAirMoveEvent)
PresentationFramework (1)
MS\Internal\Ink\EditingCoordinator.cs (1)
64_inkCanvas.AddHandler(Stylus.StylusInAirMoveEvent, new StylusEventHandler(OnInkCanvasStylusInAirOrInRangeMove));