14 references to PreviewStylusButtonDownEvent
PresentationCore (14)
System\Windows\Generated\ContentElement.cs (3)
1599
public static readonly RoutedEvent PreviewStylusButtonDownEvent = Stylus.
PreviewStylusButtonDownEvent
.AddOwner(_typeofThis);
1606
add { AddHandler(Stylus.
PreviewStylusButtonDownEvent
, value, false); }
1607
remove { RemoveHandler(Stylus.
PreviewStylusButtonDownEvent
, value); }
System\Windows\Generated\UIElement.cs (4)
781
EventManager.RegisterClassHandler(type, Stylus.
PreviewStylusButtonDownEvent
, new StylusButtonEventHandler(UIElement.OnPreviewStylusButtonDownThunk), false);
3552
public static readonly RoutedEvent PreviewStylusButtonDownEvent = Stylus.
PreviewStylusButtonDownEvent
.AddOwner(_typeofThis);
3559
add { AddHandler(Stylus.
PreviewStylusButtonDownEvent
, value, false); }
3560
remove { RemoveHandler(Stylus.
PreviewStylusButtonDownEvent
, value); }
System\Windows\Generated\UIElement3D.cs (3)
1320
public static readonly RoutedEvent PreviewStylusButtonDownEvent = Stylus.
PreviewStylusButtonDownEvent
.AddOwner(_typeofThis);
1327
add { AddHandler(Stylus.
PreviewStylusButtonDownEvent
, value, false); }
1328
remove { RemoveHandler(Stylus.
PreviewStylusButtonDownEvent
, value); }
System\Windows\Input\Stylus\Common\Stylus.cs (2)
534
UIElement.AddHandler(element,
PreviewStylusButtonDownEvent
, handler);
544
UIElement.RemoveHandler(element,
PreviewStylusButtonDownEvent
, handler);
System\Windows\Input\Stylus\Common\StylusLogic.cs (1)
621
if (routedEvent == Stylus.
PreviewStylusButtonDownEvent
)
System\Windows\Input\Stylus\Wisp\WispLogic.cs (1)
2906
args.RoutedEvent = Stylus.
PreviewStylusButtonDownEvent
;