16 references to StylusOutOfRangeEvent
PresentationCore (15)
System\Windows\Generated\ContentElement.cs (3)
1450public static readonly RoutedEvent StylusOutOfRangeEvent = Stylus.StylusOutOfRangeEvent.AddOwner(_typeofThis); 1457add { AddHandler(Stylus.StylusOutOfRangeEvent, value, false); } 1458remove { RemoveHandler(Stylus.StylusOutOfRangeEvent, value); }
System\Windows\Generated\UIElement.cs (4)
758EventManager.RegisterClassHandler(type, Stylus.StylusOutOfRangeEvent, new StylusEventHandler(UIElement.OnStylusOutOfRangeThunk), false); 3403public static readonly RoutedEvent StylusOutOfRangeEvent = Stylus.StylusOutOfRangeEvent.AddOwner(_typeofThis); 3410add { AddHandler(Stylus.StylusOutOfRangeEvent, value, false); } 3411remove { RemoveHandler(Stylus.StylusOutOfRangeEvent, value); }
System\Windows\Generated\UIElement3D.cs (3)
1180public static readonly RoutedEvent StylusOutOfRangeEvent = Stylus.StylusOutOfRangeEvent.AddOwner(_typeofThis); 1187add { AddHandler(Stylus.StylusOutOfRangeEvent, value, false); } 1188remove { RemoveHandler(Stylus.StylusOutOfRangeEvent, value); }
System\Windows\Input\Stylus\Common\Stylus.cs (2)
351UIElement.AddHandler(element, StylusOutOfRangeEvent, handler); 361UIElement.RemoveHandler(element, StylusOutOfRangeEvent, handler);
System\Windows\Input\Stylus\Common\StylusLogic.cs (1)
601return Stylus.StylusOutOfRangeEvent;
System\Windows\Input\Stylus\Wisp\WispLogic.cs (2)
1258if (e.StagingItem.Input.RoutedEvent == Stylus.StylusOutOfRangeEvent) 1356if (e.StagingItem.Input.RoutedEvent == Stylus.StylusOutOfRangeEvent)
PresentationFramework (1)
MS\Internal\Ink\EditingCoordinator.cs (1)
49_inkCanvas.AddHandler(Stylus.StylusOutOfRangeEvent, new StylusEventHandler(OnInkCanvasStylusOutOfRange));