16 references to StylusOutOfRangeEvent
PresentationCore (15)
System\Windows\Generated\ContentElement.cs (3)
1468public static readonly RoutedEvent StylusOutOfRangeEvent = Stylus.StylusOutOfRangeEvent.AddOwner(_typeofThis); 1475add { AddHandler(Stylus.StylusOutOfRangeEvent, value, false); } 1476remove { RemoveHandler(Stylus.StylusOutOfRangeEvent, value); }
System\Windows\Generated\UIElement.cs (4)
776EventManager.RegisterClassHandler(type, Stylus.StylusOutOfRangeEvent, new StylusEventHandler(UIElement.OnStylusOutOfRangeThunk), false); 3421public static readonly RoutedEvent StylusOutOfRangeEvent = Stylus.StylusOutOfRangeEvent.AddOwner(_typeofThis); 3428add { AddHandler(Stylus.StylusOutOfRangeEvent, value, false); } 3429remove { RemoveHandler(Stylus.StylusOutOfRangeEvent, value); }
System\Windows\Generated\UIElement3D.cs (3)
1189public static readonly RoutedEvent StylusOutOfRangeEvent = Stylus.StylusOutOfRangeEvent.AddOwner(_typeofThis); 1196add { AddHandler(Stylus.StylusOutOfRangeEvent, value, false); } 1197remove { 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)
625return 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));