14 references to StylusInRangeEvent
PresentationCore (13)
System\Windows\Generated\ContentElement.cs (3)
1412public static readonly RoutedEvent StylusInRangeEvent = Stylus.StylusInRangeEvent.AddOwner(_typeofThis); 1419add { AddHandler(Stylus.StylusInRangeEvent, value, false); } 1420remove { RemoveHandler(Stylus.StylusInRangeEvent, value); }
System\Windows\Generated\UIElement.cs (4)
756EventManager.RegisterClassHandler(type, Stylus.StylusInRangeEvent, new StylusEventHandler(UIElement.OnStylusInRangeThunk), false); 3365public static readonly RoutedEvent StylusInRangeEvent = Stylus.StylusInRangeEvent.AddOwner(_typeofThis); 3372add { AddHandler(Stylus.StylusInRangeEvent, value, false); } 3373remove { RemoveHandler(Stylus.StylusInRangeEvent, value); }
System\Windows\Generated\UIElement3D.cs (3)
1142public static readonly RoutedEvent StylusInRangeEvent = Stylus.StylusInRangeEvent.AddOwner(_typeofThis); 1149add { AddHandler(Stylus.StylusInRangeEvent, value, false); } 1150remove { RemoveHandler(Stylus.StylusInRangeEvent, value); }
System\Windows\Input\Stylus\Common\Stylus.cs (2)
301UIElement.AddHandler(element, StylusInRangeEvent, handler); 311UIElement.RemoveHandler(element, StylusInRangeEvent, handler);
System\Windows\Input\Stylus\Common\StylusLogic.cs (1)
599return Stylus.StylusInRangeEvent;
PresentationFramework (1)
MS\Internal\Ink\EditingCoordinator.cs (1)
47_inkCanvas.AddHandler(Stylus.StylusInRangeEvent, new StylusEventHandler(OnInkCanvasStylusInAirOrInRangeMove));