16 references to StylusInAirMoveEvent
PresentationCore (15)
System\Windows\Generated\ContentElement.cs (3)
1337public static readonly RoutedEvent StylusInAirMoveEvent = Stylus.StylusInAirMoveEvent.AddOwner(_typeofThis); 1344add { AddHandler(Stylus.StylusInAirMoveEvent, value, false); } 1345remove { RemoveHandler(Stylus.StylusInAirMoveEvent, value); }
System\Windows\Generated\UIElement.cs (4)
753EventManager.RegisterClassHandler(type, Stylus.StylusInAirMoveEvent, new StylusEventHandler(UIElement.OnStylusInAirMoveThunk), false); 3290public static readonly RoutedEvent StylusInAirMoveEvent = Stylus.StylusInAirMoveEvent.AddOwner(_typeofThis); 3297add { AddHandler(Stylus.StylusInAirMoveEvent, value, false); } 3298remove { RemoveHandler(Stylus.StylusInAirMoveEvent, value); }
System\Windows\Generated\UIElement3D.cs (3)
1065public static readonly RoutedEvent StylusInAirMoveEvent = Stylus.StylusInAirMoveEvent.AddOwner(_typeofThis); 1072add { AddHandler(Stylus.StylusInAirMoveEvent, value, false); } 1073remove { 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)
598return Stylus.StylusInAirMoveEvent;
System\Windows\Input\Stylus\Wisp\WispLogic.cs (1)
2890|| routedEvent == Stylus.StylusInAirMoveEvent))
System\Windows\Input\Stylus\Wisp\WispStylusDevice.cs (1)
1779else if (stylusEvent == Stylus.StylusInAirMoveEvent)
PresentationFramework (1)
MS\Internal\Ink\EditingCoordinator.cs (1)
49_inkCanvas.AddHandler(Stylus.StylusInAirMoveEvent, new StylusEventHandler(OnInkCanvasStylusInAirOrInRangeMove));