13 references to PreviewTouchUpEvent
PresentationCore (13)
System\Windows\Generated\ContentElement.cs (3)
2119
public static readonly RoutedEvent PreviewTouchUpEvent = Touch.
PreviewTouchUpEvent
.AddOwner(_typeofThis);
2127
add { AddHandler(Touch.
PreviewTouchUpEvent
, value, false); }
2128
remove { RemoveHandler(Touch.
PreviewTouchUpEvent
, value); }
System\Windows\Generated\UIElement.cs (4)
798
EventManager.RegisterClassHandler(type, Touch.
PreviewTouchUpEvent
, new EventHandler<TouchEventArgs>(UIElement.OnPreviewTouchUpThunk), false);
4072
public static readonly RoutedEvent PreviewTouchUpEvent = Touch.
PreviewTouchUpEvent
.AddOwner(_typeofThis);
4080
add { AddHandler(Touch.
PreviewTouchUpEvent
, value, false); }
4081
remove { RemoveHandler(Touch.
PreviewTouchUpEvent
, value); }
System\Windows\Generated\UIElement3D.cs (3)
1849
public static readonly RoutedEvent PreviewTouchUpEvent = Touch.
PreviewTouchUpEvent
.AddOwner(_typeofThis);
1857
add { AddHandler(Touch.
PreviewTouchUpEvent
, value, false); }
1858
remove { RemoveHandler(Touch.
PreviewTouchUpEvent
, value); }
System\Windows\Input\TouchDevice.cs (3)
972
TouchEventArgs e = CreateEventArgs(Touch.
PreviewTouchUpEvent
);
1005
else if (routedEvent == Touch.
PreviewTouchUpEvent
||
1043
else if (routedEvent == Touch.
PreviewTouchUpEvent
)