16 references to StylusOutOfRangeEvent
PresentationCore (15)
System\Windows\Generated\ContentElement.cs (3)
1451public static readonly RoutedEvent StylusOutOfRangeEvent = Stylus.StylusOutOfRangeEvent.AddOwner(_typeofThis); 1458add { AddHandler(Stylus.StylusOutOfRangeEvent, value, false); } 1459remove { RemoveHandler(Stylus.StylusOutOfRangeEvent, value); }
System\Windows\Generated\UIElement.cs (4)
759EventManager.RegisterClassHandler(type, Stylus.StylusOutOfRangeEvent, new StylusEventHandler(UIElement.OnStylusOutOfRangeThunk), false); 3404public static readonly RoutedEvent StylusOutOfRangeEvent = Stylus.StylusOutOfRangeEvent.AddOwner(_typeofThis); 3411add { AddHandler(Stylus.StylusOutOfRangeEvent, value, false); } 3412remove { RemoveHandler(Stylus.StylusOutOfRangeEvent, value); }
System\Windows\Generated\UIElement3D.cs (3)
1179public static readonly RoutedEvent StylusOutOfRangeEvent = Stylus.StylusOutOfRangeEvent.AddOwner(_typeofThis); 1186add { AddHandler(Stylus.StylusOutOfRangeEvent, value, false); } 1187remove { RemoveHandler(Stylus.StylusOutOfRangeEvent, value); }
System\Windows\Input\Stylus\Common\Stylus.cs (2)
352UIElement.AddHandler(element, StylusOutOfRangeEvent, handler); 362UIElement.RemoveHandler(element, StylusOutOfRangeEvent, handler);
System\Windows\Input\Stylus\Common\StylusLogic.cs (1)
602return Stylus.StylusOutOfRangeEvent;
System\Windows\Input\Stylus\Wisp\WispLogic.cs (2)
1259if (e.StagingItem.Input.RoutedEvent == Stylus.StylusOutOfRangeEvent) 1357if (e.StagingItem.Input.RoutedEvent == Stylus.StylusOutOfRangeEvent)
PresentationFramework (1)
MS\Internal\Ink\EditingCoordinator.cs (1)
50_inkCanvas.AddHandler(Stylus.StylusOutOfRangeEvent, new StylusEventHandler(OnInkCanvasStylusOutOfRange));