14 references to StylusInRangeEvent
PresentationCore (13)
System\Windows\Generated\ContentElement.cs (3)
1428
public static readonly RoutedEvent StylusInRangeEvent = Stylus.
StylusInRangeEvent
.AddOwner(_typeofThis);
1435
add { AddHandler(Stylus.
StylusInRangeEvent
, value, false); }
1436
remove { RemoveHandler(Stylus.
StylusInRangeEvent
, value); }
System\Windows\Generated\UIElement.cs (4)
772
EventManager.RegisterClassHandler(type, Stylus.
StylusInRangeEvent
, new StylusEventHandler(UIElement.OnStylusInRangeThunk), false);
3381
public static readonly RoutedEvent StylusInRangeEvent = Stylus.
StylusInRangeEvent
.AddOwner(_typeofThis);
3388
add { AddHandler(Stylus.
StylusInRangeEvent
, value, false); }
3389
remove { RemoveHandler(Stylus.
StylusInRangeEvent
, value); }
System\Windows\Generated\UIElement3D.cs (3)
1149
public static readonly RoutedEvent StylusInRangeEvent = Stylus.
StylusInRangeEvent
.AddOwner(_typeofThis);
1156
add { AddHandler(Stylus.
StylusInRangeEvent
, value, false); }
1157
remove { RemoveHandler(Stylus.
StylusInRangeEvent
, value); }
System\Windows\Input\Stylus\Common\Stylus.cs (2)
307
UIElement.AddHandler(element,
StylusInRangeEvent
, handler);
317
UIElement.RemoveHandler(element,
StylusInRangeEvent
, handler);
System\Windows\Input\Stylus\Common\StylusLogic.cs (1)
616
return Stylus.
StylusInRangeEvent
;
PresentationFramework (1)
MS\Internal\Ink\EditingCoordinator.cs (1)
63
_inkCanvas.AddHandler(Stylus.
StylusInRangeEvent
, new StylusEventHandler(OnInkCanvasStylusInAirOrInRangeMove));