13 references to PreviewTouchUpEvent
PresentationCore (13)
System\Windows\Generated\ContentElement.cs (3)
2135
public static readonly RoutedEvent PreviewTouchUpEvent = Touch.
PreviewTouchUpEvent
.AddOwner(_typeofThis);
2143
add { AddHandler(Touch.
PreviewTouchUpEvent
, value, false); }
2144
remove { RemoveHandler(Touch.
PreviewTouchUpEvent
, value); }
System\Windows\Generated\UIElement.cs (4)
814
EventManager.RegisterClassHandler(type, Touch.
PreviewTouchUpEvent
, new EventHandler<TouchEventArgs>(UIElement.OnPreviewTouchUpThunk), false);
4088
public static readonly RoutedEvent PreviewTouchUpEvent = Touch.
PreviewTouchUpEvent
.AddOwner(_typeofThis);
4096
add { AddHandler(Touch.
PreviewTouchUpEvent
, value, false); }
4097
remove { RemoveHandler(Touch.
PreviewTouchUpEvent
, value); }
System\Windows\Generated\UIElement3D.cs (3)
1856
public static readonly RoutedEvent PreviewTouchUpEvent = Touch.
PreviewTouchUpEvent
.AddOwner(_typeofThis);
1864
add { AddHandler(Touch.
PreviewTouchUpEvent
, value, false); }
1865
remove { RemoveHandler(Touch.
PreviewTouchUpEvent
, value); }
System\Windows\Input\TouchDevice.cs (3)
983
TouchEventArgs e = CreateEventArgs(Touch.
PreviewTouchUpEvent
);
1016
else if (routedEvent == Touch.
PreviewTouchUpEvent
||
1054
else if (routedEvent == Touch.
PreviewTouchUpEvent
)