13 references to LostTouchCaptureEvent
PresentationCore (13)
System\Windows\Generated\ContentElement.cs (3)
2180
public static readonly RoutedEvent LostTouchCaptureEvent = Touch.
LostTouchCaptureEvent
.AddOwner(_typeofThis);
2188
add { AddHandler(Touch.
LostTouchCaptureEvent
, value, false); }
2189
remove { RemoveHandler(Touch.
LostTouchCaptureEvent
, value); }
System\Windows\Generated\UIElement.cs (4)
802
EventManager.RegisterClassHandler(type, Touch.
LostTouchCaptureEvent
, new EventHandler<TouchEventArgs>(UIElement.OnLostTouchCaptureThunk), false);
4133
public static readonly RoutedEvent LostTouchCaptureEvent = Touch.
LostTouchCaptureEvent
.AddOwner(_typeofThis);
4141
add { AddHandler(Touch.
LostTouchCaptureEvent
, value, false); }
4142
remove { RemoveHandler(Touch.
LostTouchCaptureEvent
, value); }
System\Windows\Generated\UIElement3D.cs (3)
1910
public static readonly RoutedEvent LostTouchCaptureEvent = Touch.
LostTouchCaptureEvent
.AddOwner(_typeofThis);
1918
add { AddHandler(Touch.
LostTouchCaptureEvent
, value, false); }
1919
remove { RemoveHandler(Touch.
LostTouchCaptureEvent
, value); }
System\Windows\Input\TouchDevice.cs (3)
604
TouchEventArgs e = CreateEventArgs(Touch.
LostTouchCaptureEvent
);
1053
(routedEvent == Touch.
LostTouchCaptureEvent
);
1097
else if ((routedEvent == Touch.
LostTouchCaptureEvent
) && PromotingToManipulation && _manipulatingElement != null)