16 references to StylusInAirMoveEvent
PresentationCore (15)
System\Windows\Generated\ContentElement.cs (3)
1352
public static readonly RoutedEvent StylusInAirMoveEvent = Stylus.
StylusInAirMoveEvent
.AddOwner(_typeofThis);
1359
add { AddHandler(Stylus.
StylusInAirMoveEvent
, value, false); }
1360
remove { RemoveHandler(Stylus.
StylusInAirMoveEvent
, value); }
System\Windows\Generated\UIElement.cs (4)
768
EventManager.RegisterClassHandler(type, Stylus.
StylusInAirMoveEvent
, new StylusEventHandler(UIElement.OnStylusInAirMoveThunk), false);
3305
public static readonly RoutedEvent StylusInAirMoveEvent = Stylus.
StylusInAirMoveEvent
.AddOwner(_typeofThis);
3312
add { AddHandler(Stylus.
StylusInAirMoveEvent
, value, false); }
3313
remove { RemoveHandler(Stylus.
StylusInAirMoveEvent
, value); }
System\Windows\Generated\UIElement3D.cs (3)
1073
public static readonly RoutedEvent StylusInAirMoveEvent = Stylus.
StylusInAirMoveEvent
.AddOwner(_typeofThis);
1080
add { AddHandler(Stylus.
StylusInAirMoveEvent
, value, false); }
1081
remove { RemoveHandler(Stylus.
StylusInAirMoveEvent
, value); }
System\Windows\Input\Stylus\Common\Stylus.cs (2)
207
UIElement.AddHandler(element,
StylusInAirMoveEvent
, handler);
217
UIElement.RemoveHandler(element,
StylusInAirMoveEvent
, handler);
System\Windows\Input\Stylus\Common\StylusLogic.cs (1)
614
return Stylus.
StylusInAirMoveEvent
;
System\Windows\Input\Stylus\Wisp\WispLogic.cs (1)
2878
|| routedEvent == Stylus.
StylusInAirMoveEvent
))
System\Windows\Input\Stylus\Wisp\WispStylusDevice.cs (1)
1777
else if (stylusEvent == Stylus.
StylusInAirMoveEvent
)
PresentationFramework (1)
MS\Internal\Ink\EditingCoordinator.cs (1)
64
_inkCanvas.AddHandler(Stylus.
StylusInAirMoveEvent
, new StylusEventHandler(OnInkCanvasStylusInAirOrInRangeMove));