13 references to PreviewTouchUpEvent
PresentationCore (13)
System\Windows\Generated\ContentElement.cs (3)
2120
public static readonly RoutedEvent PreviewTouchUpEvent = Touch.
PreviewTouchUpEvent
.AddOwner(_typeofThis);
2128
add { AddHandler(Touch.
PreviewTouchUpEvent
, value, false); }
2129
remove { RemoveHandler(Touch.
PreviewTouchUpEvent
, value); }
System\Windows\Generated\UIElement.cs (4)
799
EventManager.RegisterClassHandler(type, Touch.
PreviewTouchUpEvent
, new EventHandler<TouchEventArgs>(UIElement.OnPreviewTouchUpThunk), false);
4073
public static readonly RoutedEvent PreviewTouchUpEvent = Touch.
PreviewTouchUpEvent
.AddOwner(_typeofThis);
4081
add { AddHandler(Touch.
PreviewTouchUpEvent
, value, false); }
4082
remove { RemoveHandler(Touch.
PreviewTouchUpEvent
, value); }
System\Windows\Generated\UIElement3D.cs (3)
1850
public static readonly RoutedEvent PreviewTouchUpEvent = Touch.
PreviewTouchUpEvent
.AddOwner(_typeofThis);
1858
add { AddHandler(Touch.
PreviewTouchUpEvent
, value, false); }
1859
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
)