14 references to StylusInRangeEvent
PresentationCore (13)
System\Windows\Generated\ContentElement.cs (3)
1413public static readonly RoutedEvent StylusInRangeEvent = Stylus.StylusInRangeEvent.AddOwner(_typeofThis); 1420add { AddHandler(Stylus.StylusInRangeEvent, value, false); } 1421remove { RemoveHandler(Stylus.StylusInRangeEvent, value); }
System\Windows\Generated\UIElement.cs (4)
757EventManager.RegisterClassHandler(type, Stylus.StylusInRangeEvent, new StylusEventHandler(UIElement.OnStylusInRangeThunk), false); 3366public static readonly RoutedEvent StylusInRangeEvent = Stylus.StylusInRangeEvent.AddOwner(_typeofThis); 3373add { AddHandler(Stylus.StylusInRangeEvent, value, false); } 3374remove { RemoveHandler(Stylus.StylusInRangeEvent, value); }
System\Windows\Generated\UIElement3D.cs (3)
1141public static readonly RoutedEvent StylusInRangeEvent = Stylus.StylusInRangeEvent.AddOwner(_typeofThis); 1148add { AddHandler(Stylus.StylusInRangeEvent, value, false); } 1149remove { RemoveHandler(Stylus.StylusInRangeEvent, value); }
System\Windows\Input\Stylus\Common\Stylus.cs (2)
302UIElement.AddHandler(element, StylusInRangeEvent, handler); 312UIElement.RemoveHandler(element, StylusInRangeEvent, handler);
System\Windows\Input\Stylus\Common\StylusLogic.cs (1)
600return Stylus.StylusInRangeEvent;
PresentationFramework (1)
MS\Internal\Ink\EditingCoordinator.cs (1)
48_inkCanvas.AddHandler(Stylus.StylusInRangeEvent, new StylusEventHandler(OnInkCanvasStylusInAirOrInRangeMove));