14 references to PreviewStylusButtonDownEvent
PresentationCore (14)
System\Windows\Generated\ContentElement.cs (3)
1583
public static readonly RoutedEvent PreviewStylusButtonDownEvent = Stylus.
PreviewStylusButtonDownEvent
.AddOwner(_typeofThis);
1590
add { AddHandler(Stylus.
PreviewStylusButtonDownEvent
, value, false); }
1591
remove { RemoveHandler(Stylus.
PreviewStylusButtonDownEvent
, value); }
System\Windows\Generated\UIElement.cs (4)
765
EventManager.RegisterClassHandler(type, Stylus.
PreviewStylusButtonDownEvent
, new StylusButtonEventHandler(UIElement.OnPreviewStylusButtonDownThunk), false);
3536
public static readonly RoutedEvent PreviewStylusButtonDownEvent = Stylus.
PreviewStylusButtonDownEvent
.AddOwner(_typeofThis);
3543
add { AddHandler(Stylus.
PreviewStylusButtonDownEvent
, value, false); }
3544
remove { RemoveHandler(Stylus.
PreviewStylusButtonDownEvent
, value); }
System\Windows\Generated\UIElement3D.cs (3)
1313
public static readonly RoutedEvent PreviewStylusButtonDownEvent = Stylus.
PreviewStylusButtonDownEvent
.AddOwner(_typeofThis);
1320
add { AddHandler(Stylus.
PreviewStylusButtonDownEvent
, value, false); }
1321
remove { RemoveHandler(Stylus.
PreviewStylusButtonDownEvent
, value); }
System\Windows\Input\Stylus\Common\Stylus.cs (2)
528
UIElement.AddHandler(element,
PreviewStylusButtonDownEvent
, handler);
538
UIElement.RemoveHandler(element,
PreviewStylusButtonDownEvent
, handler);
System\Windows\Input\Stylus\Common\StylusLogic.cs (1)
604
if (routedEvent == Stylus.
PreviewStylusButtonDownEvent
)
System\Windows\Input\Stylus\Wisp\WispLogic.cs (1)
2919
args.RoutedEvent = Stylus.
PreviewStylusButtonDownEvent
;