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