23 references to StylusMoveEvent
PresentationCore (21)
System\Windows\Generated\ContentElement.cs (3)
1310
public static readonly RoutedEvent StylusMoveEvent = Stylus.
StylusMoveEvent
.AddOwner(_typeofThis);
1317
add { AddHandler(Stylus.
StylusMoveEvent
, value, false); }
1318
remove { RemoveHandler(Stylus.
StylusMoveEvent
, value); }
System\Windows\Generated\UIElement.cs (4)
762
EventManager.RegisterClassHandler(type, Stylus.
StylusMoveEvent
, new StylusEventHandler(UIElement.OnStylusMoveThunk), false);
3263
public static readonly RoutedEvent StylusMoveEvent = Stylus.
StylusMoveEvent
.AddOwner(_typeofThis);
3270
add { AddHandler(Stylus.
StylusMoveEvent
, value, false); }
3271
remove { RemoveHandler(Stylus.
StylusMoveEvent
, value); }
System\Windows\Generated\UIElement3D.cs (3)
1029
public static readonly RoutedEvent StylusMoveEvent = Stylus.
StylusMoveEvent
.AddOwner(_typeofThis);
1036
add { AddHandler(Stylus.
StylusMoveEvent
, value, false); }
1037
remove { RemoveHandler(Stylus.
StylusMoveEvent
, value); }
System\Windows\Input\Stylus\Common\Stylus.cs (2)
152
UIElement.AddHandler(element,
StylusMoveEvent
, handler);
162
UIElement.RemoveHandler(element,
StylusMoveEvent
, handler);
System\Windows\Input\Stylus\Common\StylusLogic.cs (1)
602
return Stylus.
StylusMoveEvent
;
System\Windows\Input\Stylus\Pointer\PointerLogic.cs (2)
969
(routedEvent == Stylus.
StylusMoveEvent
||
1126
if (stylusEventArgs.RoutedEvent == Stylus.
StylusMoveEvent
)
System\Windows\Input\Stylus\Wisp\WispLogic.cs (5)
1312
if (e.StagingItem.Input.RoutedEvent == Stylus.
StylusMoveEvent
)
1518
(routedEvent == Stylus.
StylusMoveEvent
||
1536
if (stylusEventArgs.RoutedEvent == Stylus.
StylusMoveEvent
)
1586
storedStagingItems[stagingItemCount - 1].Input.RoutedEvent == Stylus.
StylusMoveEvent
)
2868
|| routedEvent == Stylus.
StylusMoveEvent
System\Windows\Input\Stylus\Wisp\WispStylusDevice.cs (1)
1789
else if (stylusEvent == Stylus.
StylusMoveEvent
)
PresentationFramework (2)
MS\Internal\Ink\EditingCoordinator.cs (2)
967
_inkCanvas.AddHandler(Stylus.
StylusMoveEvent
, new StylusEventHandler(OnInkCanvasDeviceMove<StylusEventArgs>));
1020
_inkCanvas.RemoveHandler(Stylus.
StylusMoveEvent
, new StylusEventHandler(OnInkCanvasDeviceMove<StylusEventArgs>));