14 references to StylusInRangeEvent
PresentationCore (13)
System\Windows\Generated\ContentElement.cs (3)
1430public static readonly RoutedEvent StylusInRangeEvent = Stylus.StylusInRangeEvent.AddOwner(_typeofThis); 1437add { AddHandler(Stylus.StylusInRangeEvent, value, false); } 1438remove { RemoveHandler(Stylus.StylusInRangeEvent, value); }
System\Windows\Generated\UIElement.cs (4)
774EventManager.RegisterClassHandler(type, Stylus.StylusInRangeEvent, new StylusEventHandler(UIElement.OnStylusInRangeThunk), false); 3383public static readonly RoutedEvent StylusInRangeEvent = Stylus.StylusInRangeEvent.AddOwner(_typeofThis); 3390add { AddHandler(Stylus.StylusInRangeEvent, value, false); } 3391remove { RemoveHandler(Stylus.StylusInRangeEvent, value); }
System\Windows\Generated\UIElement3D.cs (3)
1151public static readonly RoutedEvent StylusInRangeEvent = Stylus.StylusInRangeEvent.AddOwner(_typeofThis); 1158add { AddHandler(Stylus.StylusInRangeEvent, value, false); } 1159remove { RemoveHandler(Stylus.StylusInRangeEvent, value); }
System\Windows\Input\Stylus\Common\Stylus.cs (2)
307UIElement.AddHandler(element, StylusInRangeEvent, handler); 317UIElement.RemoveHandler(element, StylusInRangeEvent, handler);
System\Windows\Input\Stylus\Common\StylusLogic.cs (1)
623return Stylus.StylusInRangeEvent;
PresentationFramework (1)
MS\Internal\Ink\EditingCoordinator.cs (1)
63_inkCanvas.AddHandler(Stylus.StylusInRangeEvent, new StylusEventHandler(OnInkCanvasStylusInAirOrInRangeMove));