16 references to StylusOutOfRangeEvent
PresentationCore (15)
System\Windows\Generated\ContentElement.cs (3)
1466public static readonly RoutedEvent StylusOutOfRangeEvent = Stylus.StylusOutOfRangeEvent.AddOwner(_typeofThis); 1473add { AddHandler(Stylus.StylusOutOfRangeEvent, value, false); } 1474remove { RemoveHandler(Stylus.StylusOutOfRangeEvent, value); }
System\Windows\Generated\UIElement.cs (4)
774EventManager.RegisterClassHandler(type, Stylus.StylusOutOfRangeEvent, new StylusEventHandler(UIElement.OnStylusOutOfRangeThunk), false); 3419public static readonly RoutedEvent StylusOutOfRangeEvent = Stylus.StylusOutOfRangeEvent.AddOwner(_typeofThis); 3426add { AddHandler(Stylus.StylusOutOfRangeEvent, value, false); } 3427remove { RemoveHandler(Stylus.StylusOutOfRangeEvent, value); }
System\Windows\Generated\UIElement3D.cs (3)
1187public static readonly RoutedEvent StylusOutOfRangeEvent = Stylus.StylusOutOfRangeEvent.AddOwner(_typeofThis); 1194add { AddHandler(Stylus.StylusOutOfRangeEvent, value, false); } 1195remove { RemoveHandler(Stylus.StylusOutOfRangeEvent, value); }
System\Windows\Input\Stylus\Common\Stylus.cs (2)
357UIElement.AddHandler(element, StylusOutOfRangeEvent, handler); 367UIElement.RemoveHandler(element, StylusOutOfRangeEvent, handler);
System\Windows\Input\Stylus\Common\StylusLogic.cs (1)
618return Stylus.StylusOutOfRangeEvent;
System\Windows\Input\Stylus\Wisp\WispLogic.cs (2)
1259if (e.StagingItem.Input.RoutedEvent == Stylus.StylusOutOfRangeEvent) 1355if (e.StagingItem.Input.RoutedEvent == Stylus.StylusOutOfRangeEvent)
PresentationFramework (1)
MS\Internal\Ink\EditingCoordinator.cs (1)
65_inkCanvas.AddHandler(Stylus.StylusOutOfRangeEvent, new StylusEventHandler(OnInkCanvasStylusOutOfRange));