13 references to GotTouchCaptureEvent
PresentationCore (13)
Core\CSharp\System\Windows\Generated\ContentElement.cs (3)
2235
public static readonly RoutedEvent GotTouchCaptureEvent = Touch.
GotTouchCaptureEvent
.AddOwner(_typeofThis);
2243
add { AddHandler(Touch.
GotTouchCaptureEvent
, value, false); }
2244
remove { RemoveHandler(Touch.
GotTouchCaptureEvent
, value); }
Core\CSharp\System\Windows\Generated\UIElement.cs (4)
881
EventManager.RegisterClassHandler(type, Touch.
GotTouchCaptureEvent
, new EventHandler<TouchEventArgs>(UIElement.OnGotTouchCaptureThunk), false);
4513
public static readonly RoutedEvent GotTouchCaptureEvent = Touch.
GotTouchCaptureEvent
.AddOwner(_typeofThis);
4521
add { AddHandler(Touch.
GotTouchCaptureEvent
, value, false); }
4522
remove { RemoveHandler(Touch.
GotTouchCaptureEvent
, value); }
Core\CSharp\System\Windows\Generated\UIElement3D.cs (3)
1941
public static readonly RoutedEvent GotTouchCaptureEvent = Touch.
GotTouchCaptureEvent
.AddOwner(_typeofThis);
1949
add { AddHandler(Touch.
GotTouchCaptureEvent
, value, false); }
1950
remove { RemoveHandler(Touch.
GotTouchCaptureEvent
, value); }
Core\CSharp\System\Windows\Input\TouchDevice.cs (3)
677
TouchEventArgs e = CreateEventArgs(Touch.
GotTouchCaptureEvent
);
1151
(routedEvent == Touch.
GotTouchCaptureEvent
) ||
1182
else if ((routedEvent == Touch.
GotTouchCaptureEvent
) && !PromotingToManipulation)