23 references to StylusMoveEvent
PresentationCore (21)
System\Windows\Generated\ContentElement.cs (3)
1299
public static readonly RoutedEvent StylusMoveEvent = Stylus.
StylusMoveEvent
.AddOwner(_typeofThis);
1306
add { AddHandler(Stylus.
StylusMoveEvent
, value, false); }
1307
remove { RemoveHandler(Stylus.
StylusMoveEvent
, value); }
System\Windows\Generated\UIElement.cs (4)
751
EventManager.RegisterClassHandler(type, Stylus.
StylusMoveEvent
, new StylusEventHandler(UIElement.OnStylusMoveThunk), false);
3252
public static readonly RoutedEvent StylusMoveEvent = Stylus.
StylusMoveEvent
.AddOwner(_typeofThis);
3259
add { AddHandler(Stylus.
StylusMoveEvent
, value, false); }
3260
remove { RemoveHandler(Stylus.
StylusMoveEvent
, value); }
System\Windows\Generated\UIElement3D.cs (3)
1027
public static readonly RoutedEvent StylusMoveEvent = Stylus.
StylusMoveEvent
.AddOwner(_typeofThis);
1034
add { AddHandler(Stylus.
StylusMoveEvent
, value, false); }
1035
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)
596
return Stylus.
StylusMoveEvent
;
System\Windows\Input\Stylus\Pointer\PointerLogic.cs (2)
971
(routedEvent == Stylus.
StylusMoveEvent
||
1128
if (stylusEventArgs.RoutedEvent == Stylus.
StylusMoveEvent
)
System\Windows\Input\Stylus\Wisp\WispLogic.cs (5)
1323
if (e.StagingItem.Input.RoutedEvent == Stylus.
StylusMoveEvent
)
1529
(routedEvent == Stylus.
StylusMoveEvent
||
1547
if (stylusEventArgs.RoutedEvent == Stylus.
StylusMoveEvent
)
1597
storedStagingItems[stagingItemCount - 1].Input.RoutedEvent == Stylus.
StylusMoveEvent
)
2889
|| routedEvent == Stylus.
StylusMoveEvent
System\Windows\Input\Stylus\Wisp\WispStylusDevice.cs (1)
1794
else if (stylusEvent == Stylus.
StylusMoveEvent
)
PresentationFramework (2)
MS\Internal\Ink\EditingCoordinator.cs (2)
958
_inkCanvas.AddHandler(Stylus.
StylusMoveEvent
, new StylusEventHandler(OnInkCanvasDeviceMove<StylusEventArgs>));
1011
_inkCanvas.RemoveHandler(Stylus.
StylusMoveEvent
, new StylusEventHandler(OnInkCanvasDeviceMove<StylusEventArgs>));