13 references to PreviewTouchUpEvent
PresentationCore (13)
System\Windows\Generated\ContentElement.cs (3)
2123
public static readonly RoutedEvent PreviewTouchUpEvent = Touch.
PreviewTouchUpEvent
.AddOwner(_typeofThis);
2131
add { AddHandler(Touch.
PreviewTouchUpEvent
, value, false); }
2132
remove { RemoveHandler(Touch.
PreviewTouchUpEvent
, value); }
System\Windows\Generated\UIElement.cs (4)
802
EventManager.RegisterClassHandler(type, Touch.
PreviewTouchUpEvent
, new EventHandler<TouchEventArgs>(UIElement.OnPreviewTouchUpThunk), false);
4076
public static readonly RoutedEvent PreviewTouchUpEvent = Touch.
PreviewTouchUpEvent
.AddOwner(_typeofThis);
4084
add { AddHandler(Touch.
PreviewTouchUpEvent
, value, false); }
4085
remove { RemoveHandler(Touch.
PreviewTouchUpEvent
, value); }
System\Windows\Generated\UIElement3D.cs (3)
1848
public static readonly RoutedEvent PreviewTouchUpEvent = Touch.
PreviewTouchUpEvent
.AddOwner(_typeofThis);
1856
add { AddHandler(Touch.
PreviewTouchUpEvent
, value, false); }
1857
remove { RemoveHandler(Touch.
PreviewTouchUpEvent
, value); }
System\Windows\Input\TouchDevice.cs (3)
973
TouchEventArgs e = CreateEventArgs(Touch.
PreviewTouchUpEvent
);
1006
else if (routedEvent == Touch.
PreviewTouchUpEvent
||
1044
else if (routedEvent == Touch.
PreviewTouchUpEvent
)