14 references to StylusInRangeEvent
PresentationCore (13)
System\Windows\Generated\ContentElement.cs (3)
1424
public static readonly RoutedEvent StylusInRangeEvent = Stylus.
StylusInRangeEvent
.AddOwner(_typeofThis);
1431
add { AddHandler(Stylus.
StylusInRangeEvent
, value, false); }
1432
remove { RemoveHandler(Stylus.
StylusInRangeEvent
, value); }
System\Windows\Generated\UIElement.cs (4)
768
EventManager.RegisterClassHandler(type, Stylus.
StylusInRangeEvent
, new StylusEventHandler(UIElement.OnStylusInRangeThunk), false);
3377
public static readonly RoutedEvent StylusInRangeEvent = Stylus.
StylusInRangeEvent
.AddOwner(_typeofThis);
3384
add { AddHandler(Stylus.
StylusInRangeEvent
, value, false); }
3385
remove { RemoveHandler(Stylus.
StylusInRangeEvent
, value); }
System\Windows\Generated\UIElement3D.cs (3)
1143
public static readonly RoutedEvent StylusInRangeEvent = Stylus.
StylusInRangeEvent
.AddOwner(_typeofThis);
1150
add { AddHandler(Stylus.
StylusInRangeEvent
, value, false); }
1151
remove { RemoveHandler(Stylus.
StylusInRangeEvent
, value); }
System\Windows\Input\Stylus\Common\Stylus.cs (2)
302
UIElement.AddHandler(element,
StylusInRangeEvent
, handler);
312
UIElement.RemoveHandler(element,
StylusInRangeEvent
, handler);
System\Windows\Input\Stylus\Common\StylusLogic.cs (1)
606
return Stylus.
StylusInRangeEvent
;
PresentationFramework (1)
MS\Internal\Ink\EditingCoordinator.cs (1)
48
_inkCanvas.AddHandler(Stylus.
StylusInRangeEvent
, new StylusEventHandler(OnInkCanvasStylusInAirOrInRangeMove));