13 references to StylusEnterEvent
PresentationCore (13)
System\Windows\Generated\ContentElement.cs (3)
1367public static readonly RoutedEvent StylusEnterEvent = Stylus.StylusEnterEvent.AddOwner(_typeofThis); 1374add { AddHandler(Stylus.StylusEnterEvent, value, false); } 1375remove { RemoveHandler(Stylus.StylusEnterEvent, value); }
System\Windows\Generated\UIElement.cs (4)
765EventManager.RegisterClassHandler(type, Stylus.StylusEnterEvent, new StylusEventHandler(UIElement.OnStylusEnterThunk), false); 3320public static readonly RoutedEvent StylusEnterEvent = Stylus.StylusEnterEvent.AddOwner(_typeofThis); 3327add { AddHandler(Stylus.StylusEnterEvent, value, false); } 3328remove { RemoveHandler(Stylus.StylusEnterEvent, value); }
System\Windows\Generated\UIElement3D.cs (3)
1086public static readonly RoutedEvent StylusEnterEvent = Stylus.StylusEnterEvent.AddOwner(_typeofThis); 1093add { AddHandler(Stylus.StylusEnterEvent, value, false); } 1094remove { RemoveHandler(Stylus.StylusEnterEvent, value); }
System\Windows\Input\Stylus\Common\Stylus.cs (2)
227UIElement.AddHandler(element, StylusEnterEvent, handler); 237UIElement.RemoveHandler(element, StylusEnterEvent, handler);
System\Windows\StylusOverProperty.cs (1)
40stylusEventArgs.RoutedEvent = oldValue ? Stylus.StylusLeaveEvent : Stylus.StylusEnterEvent;