16 references to StylusInAirMoveEvent
PresentationCore (15)
System\Windows\Generated\ContentElement.cs (3)
1348
public static readonly RoutedEvent StylusInAirMoveEvent = Stylus.
StylusInAirMoveEvent
.AddOwner(_typeofThis);
1355
add { AddHandler(Stylus.
StylusInAirMoveEvent
, value, false); }
1356
remove { RemoveHandler(Stylus.
StylusInAirMoveEvent
, value); }
System\Windows\Generated\UIElement.cs (4)
764
EventManager.RegisterClassHandler(type, Stylus.
StylusInAirMoveEvent
, new StylusEventHandler(UIElement.OnStylusInAirMoveThunk), false);
3301
public static readonly RoutedEvent StylusInAirMoveEvent = Stylus.
StylusInAirMoveEvent
.AddOwner(_typeofThis);
3308
add { AddHandler(Stylus.
StylusInAirMoveEvent
, value, false); }
3309
remove { RemoveHandler(Stylus.
StylusInAirMoveEvent
, value); }
System\Windows\Generated\UIElement3D.cs (3)
1067
public static readonly RoutedEvent StylusInAirMoveEvent = Stylus.
StylusInAirMoveEvent
.AddOwner(_typeofThis);
1074
add { AddHandler(Stylus.
StylusInAirMoveEvent
, value, false); }
1075
remove { RemoveHandler(Stylus.
StylusInAirMoveEvent
, value); }
System\Windows\Input\Stylus\Common\Stylus.cs (2)
202
UIElement.AddHandler(element,
StylusInAirMoveEvent
, handler);
212
UIElement.RemoveHandler(element,
StylusInAirMoveEvent
, handler);
System\Windows\Input\Stylus\Common\StylusLogic.cs (1)
604
return Stylus.
StylusInAirMoveEvent
;
System\Windows\Input\Stylus\Wisp\WispLogic.cs (1)
2869
|| routedEvent == Stylus.
StylusInAirMoveEvent
))
System\Windows\Input\Stylus\Wisp\WispStylusDevice.cs (1)
1774
else if (stylusEvent == Stylus.
StylusInAirMoveEvent
)
PresentationFramework (1)
MS\Internal\Ink\EditingCoordinator.cs (1)
49
_inkCanvas.AddHandler(Stylus.
StylusInAirMoveEvent
, new StylusEventHandler(OnInkCanvasStylusInAirOrInRangeMove));