14 references to PreviewStylusButtonDownEvent
PresentationCore (14)
System\Windows\Generated\ContentElement.cs (3)
1584
public static readonly RoutedEvent PreviewStylusButtonDownEvent = Stylus.
PreviewStylusButtonDownEvent
.AddOwner(_typeofThis);
1591
add { AddHandler(Stylus.
PreviewStylusButtonDownEvent
, value, false); }
1592
remove { RemoveHandler(Stylus.
PreviewStylusButtonDownEvent
, value); }
System\Windows\Generated\UIElement.cs (4)
766
EventManager.RegisterClassHandler(type, Stylus.
PreviewStylusButtonDownEvent
, new StylusButtonEventHandler(UIElement.OnPreviewStylusButtonDownThunk), false);
3537
public static readonly RoutedEvent PreviewStylusButtonDownEvent = Stylus.
PreviewStylusButtonDownEvent
.AddOwner(_typeofThis);
3544
add { AddHandler(Stylus.
PreviewStylusButtonDownEvent
, value, false); }
3545
remove { RemoveHandler(Stylus.
PreviewStylusButtonDownEvent
, value); }
System\Windows\Generated\UIElement3D.cs (3)
1312
public static readonly RoutedEvent PreviewStylusButtonDownEvent = Stylus.
PreviewStylusButtonDownEvent
.AddOwner(_typeofThis);
1319
add { AddHandler(Stylus.
PreviewStylusButtonDownEvent
, value, false); }
1320
remove { RemoveHandler(Stylus.
PreviewStylusButtonDownEvent
, value); }
System\Windows\Input\Stylus\Common\Stylus.cs (2)
529
UIElement.AddHandler(element,
PreviewStylusButtonDownEvent
, handler);
539
UIElement.RemoveHandler(element,
PreviewStylusButtonDownEvent
, handler);
System\Windows\Input\Stylus\Common\StylusLogic.cs (1)
605
if (routedEvent == Stylus.
PreviewStylusButtonDownEvent
)
System\Windows\Input\Stylus\Wisp\WispLogic.cs (1)
2920
args.RoutedEvent = Stylus.
PreviewStylusButtonDownEvent
;