16 references to StylusInAirMoveEvent
PresentationCore (15)
System\Windows\Generated\ContentElement.cs (3)
1337
public static readonly RoutedEvent StylusInAirMoveEvent = Stylus.
StylusInAirMoveEvent
.AddOwner(_typeofThis);
1344
add { AddHandler(Stylus.
StylusInAirMoveEvent
, value, false); }
1345
remove { RemoveHandler(Stylus.
StylusInAirMoveEvent
, value); }
System\Windows\Generated\UIElement.cs (4)
753
EventManager.RegisterClassHandler(type, Stylus.
StylusInAirMoveEvent
, new StylusEventHandler(UIElement.OnStylusInAirMoveThunk), false);
3290
public static readonly RoutedEvent StylusInAirMoveEvent = Stylus.
StylusInAirMoveEvent
.AddOwner(_typeofThis);
3297
add { AddHandler(Stylus.
StylusInAirMoveEvent
, value, false); }
3298
remove { RemoveHandler(Stylus.
StylusInAirMoveEvent
, value); }
System\Windows\Generated\UIElement3D.cs (3)
1065
public static readonly RoutedEvent StylusInAirMoveEvent = Stylus.
StylusInAirMoveEvent
.AddOwner(_typeofThis);
1072
add { AddHandler(Stylus.
StylusInAirMoveEvent
, value, false); }
1073
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)
598
return Stylus.
StylusInAirMoveEvent
;
System\Windows\Input\Stylus\Wisp\WispLogic.cs (1)
2890
|| routedEvent == Stylus.
StylusInAirMoveEvent
))
System\Windows\Input\Stylus\Wisp\WispStylusDevice.cs (1)
1779
else if (stylusEvent == Stylus.
StylusInAirMoveEvent
)
PresentationFramework (1)
MS\Internal\Ink\EditingCoordinator.cs (1)
49
_inkCanvas.AddHandler(Stylus.
StylusInAirMoveEvent
, new StylusEventHandler(OnInkCanvasStylusInAirOrInRangeMove));