14 references to StylusInRangeEvent
PresentationCore (13)
System\Windows\Generated\ContentElement.cs (3)
1412
public static readonly RoutedEvent StylusInRangeEvent = Stylus.
StylusInRangeEvent
.AddOwner(_typeofThis);
1419
add { AddHandler(Stylus.
StylusInRangeEvent
, value, false); }
1420
remove { RemoveHandler(Stylus.
StylusInRangeEvent
, value); }
System\Windows\Generated\UIElement.cs (4)
756
EventManager.RegisterClassHandler(type, Stylus.
StylusInRangeEvent
, new StylusEventHandler(UIElement.OnStylusInRangeThunk), false);
3365
public static readonly RoutedEvent StylusInRangeEvent = Stylus.
StylusInRangeEvent
.AddOwner(_typeofThis);
3372
add { AddHandler(Stylus.
StylusInRangeEvent
, value, false); }
3373
remove { RemoveHandler(Stylus.
StylusInRangeEvent
, value); }
System\Windows\Generated\UIElement3D.cs (3)
1142
public static readonly RoutedEvent StylusInRangeEvent = Stylus.
StylusInRangeEvent
.AddOwner(_typeofThis);
1149
add { AddHandler(Stylus.
StylusInRangeEvent
, value, false); }
1150
remove { RemoveHandler(Stylus.
StylusInRangeEvent
, value); }
System\Windows\Input\Stylus\Common\Stylus.cs (2)
301
UIElement.AddHandler(element,
StylusInRangeEvent
, handler);
311
UIElement.RemoveHandler(element,
StylusInRangeEvent
, handler);
System\Windows\Input\Stylus\Common\StylusLogic.cs (1)
599
return Stylus.
StylusInRangeEvent
;
PresentationFramework (1)
MS\Internal\Ink\EditingCoordinator.cs (1)
47
_inkCanvas.AddHandler(Stylus.
StylusInRangeEvent
, new StylusEventHandler(OnInkCanvasStylusInAirOrInRangeMove));