13 references to PreviewTouchUpEvent
PresentationCore (13)
Core\CSharp\System\Windows\Generated\ContentElement.cs (3)
2195
public static readonly RoutedEvent PreviewTouchUpEvent = Touch.
PreviewTouchUpEvent
.AddOwner(_typeofThis);
2203
add { AddHandler(Touch.
PreviewTouchUpEvent
, value, false); }
2204
remove { RemoveHandler(Touch.
PreviewTouchUpEvent
, value); }
Core\CSharp\System\Windows\Generated\UIElement.cs (4)
879
EventManager.RegisterClassHandler(type, Touch.
PreviewTouchUpEvent
, new EventHandler<TouchEventArgs>(UIElement.OnPreviewTouchUpThunk), false);
4473
public static readonly RoutedEvent PreviewTouchUpEvent = Touch.
PreviewTouchUpEvent
.AddOwner(_typeofThis);
4481
add { AddHandler(Touch.
PreviewTouchUpEvent
, value, false); }
4482
remove { RemoveHandler(Touch.
PreviewTouchUpEvent
, value); }
Core\CSharp\System\Windows\Generated\UIElement3D.cs (3)
1901
public static readonly RoutedEvent PreviewTouchUpEvent = Touch.
PreviewTouchUpEvent
.AddOwner(_typeofThis);
1909
add { AddHandler(Touch.
PreviewTouchUpEvent
, value, false); }
1910
remove { RemoveHandler(Touch.
PreviewTouchUpEvent
, value); }
Core\CSharp\System\Windows\Input\TouchDevice.cs (3)
1068
TouchEventArgs e = CreateEventArgs(Touch.
PreviewTouchUpEvent
);
1105
else if (routedEvent == Touch.
PreviewTouchUpEvent
||
1143
else if (routedEvent == Touch.
PreviewTouchUpEvent
)