14 references to GotStylusCaptureEvent
PresentationCore (14)
System\Windows\Generated\ContentElement.cs (3)
1519
public static readonly RoutedEvent GotStylusCaptureEvent = Stylus.
GotStylusCaptureEvent
.AddOwner(_typeofThis);
1526
add { AddHandler(Stylus.
GotStylusCaptureEvent
, value, false); }
1527
remove { RemoveHandler(Stylus.
GotStylusCaptureEvent
, value); }
System\Windows\Generated\UIElement.cs (4)
773
EventManager.RegisterClassHandler(type, Stylus.
GotStylusCaptureEvent
, new StylusEventHandler(UIElement.OnGotStylusCaptureThunk), false);
3472
public static readonly RoutedEvent GotStylusCaptureEvent = Stylus.
GotStylusCaptureEvent
.AddOwner(_typeofThis);
3479
add { AddHandler(Stylus.
GotStylusCaptureEvent
, value, false); }
3480
remove { RemoveHandler(Stylus.
GotStylusCaptureEvent
, value); }
System\Windows\Generated\UIElement3D.cs (3)
1238
public static readonly RoutedEvent GotStylusCaptureEvent = Stylus.
GotStylusCaptureEvent
.AddOwner(_typeofThis);
1245
add { AddHandler(Stylus.
GotStylusCaptureEvent
, value, false); }
1246
remove { RemoveHandler(Stylus.
GotStylusCaptureEvent
, value); }
System\Windows\Input\Stylus\Common\Stylus.cs (2)
427
UIElement.AddHandler(element,
GotStylusCaptureEvent
, handler);
437
UIElement.RemoveHandler(element,
GotStylusCaptureEvent
, handler);
System\Windows\Input\Stylus\Pointer\PointerStylusDevice.cs (1)
1055
gotCapture.RoutedEvent = Stylus.
GotStylusCaptureEvent
;
System\Windows\Input\Stylus\Wisp\WispStylusDevice.cs (1)
636
gotCapture.RoutedEvent = Stylus.
GotStylusCaptureEvent
;