13 references to StylusEnterEvent
PresentationCore (13)
System\Windows\Generated\ContentElement.cs (3)
1373public static readonly RoutedEvent StylusEnterEvent = Stylus.StylusEnterEvent.AddOwner(_typeofThis); 1380add { AddHandler(Stylus.StylusEnterEvent, value, false); } 1381remove { RemoveHandler(Stylus.StylusEnterEvent, value); }
System\Windows\Generated\UIElement.cs (4)
771EventManager.RegisterClassHandler(type, Stylus.StylusEnterEvent, new StylusEventHandler(UIElement.OnStylusEnterThunk), false); 3326public static readonly RoutedEvent StylusEnterEvent = Stylus.StylusEnterEvent.AddOwner(_typeofThis); 3333add { AddHandler(Stylus.StylusEnterEvent, value, false); } 3334remove { RemoveHandler(Stylus.StylusEnterEvent, value); }
System\Windows\Generated\UIElement3D.cs (3)
1094public static readonly RoutedEvent StylusEnterEvent = Stylus.StylusEnterEvent.AddOwner(_typeofThis); 1101add { AddHandler(Stylus.StylusEnterEvent, value, false); } 1102remove { RemoveHandler(Stylus.StylusEnterEvent, value); }
System\Windows\Input\Stylus\Common\Stylus.cs (2)
232UIElement.AddHandler(element, StylusEnterEvent, handler); 242UIElement.RemoveHandler(element, StylusEnterEvent, handler);
System\Windows\StylusOverProperty.cs (1)
42stylusEventArgs.RoutedEvent = oldValue ? Stylus.StylusLeaveEvent : Stylus.StylusEnterEvent;