13 references to GotTouchCaptureEvent
PresentationCore (13)
System\Windows\Generated\ContentElement.cs (3)
2163
public static readonly RoutedEvent GotTouchCaptureEvent = Touch.
GotTouchCaptureEvent
.AddOwner(_typeofThis);
2171
add { AddHandler(Touch.
GotTouchCaptureEvent
, value, false); }
2172
remove { RemoveHandler(Touch.
GotTouchCaptureEvent
, value); }
System\Windows\Generated\UIElement.cs (4)
804
EventManager.RegisterClassHandler(type, Touch.
GotTouchCaptureEvent
, new EventHandler<TouchEventArgs>(UIElement.OnGotTouchCaptureThunk), false);
4116
public static readonly RoutedEvent GotTouchCaptureEvent = Touch.
GotTouchCaptureEvent
.AddOwner(_typeofThis);
4124
add { AddHandler(Touch.
GotTouchCaptureEvent
, value, false); }
4125
remove { RemoveHandler(Touch.
GotTouchCaptureEvent
, value); }
System\Windows\Generated\UIElement3D.cs (3)
1888
public static readonly RoutedEvent GotTouchCaptureEvent = Touch.
GotTouchCaptureEvent
.AddOwner(_typeofThis);
1896
add { AddHandler(Touch.
GotTouchCaptureEvent
, value, false); }
1897
remove { RemoveHandler(Touch.
GotTouchCaptureEvent
, value); }
System\Windows\Input\TouchDevice.cs (3)
613
TouchEventArgs e = CreateEventArgs(Touch.
GotTouchCaptureEvent
);
1052
(routedEvent == Touch.
GotTouchCaptureEvent
) ||
1083
else if ((routedEvent == Touch.
GotTouchCaptureEvent
) && !PromotingToManipulation)