13 references to LostTouchCaptureEvent
PresentationCore (13)
System\Windows\Generated\ContentElement.cs (3)
2183
public static readonly RoutedEvent LostTouchCaptureEvent = Touch.
LostTouchCaptureEvent
.AddOwner(_typeofThis);
2191
add { AddHandler(Touch.
LostTouchCaptureEvent
, value, false); }
2192
remove { RemoveHandler(Touch.
LostTouchCaptureEvent
, value); }
System\Windows\Generated\UIElement.cs (4)
805
EventManager.RegisterClassHandler(type, Touch.
LostTouchCaptureEvent
, new EventHandler<TouchEventArgs>(UIElement.OnLostTouchCaptureThunk), false);
4136
public static readonly RoutedEvent LostTouchCaptureEvent = Touch.
LostTouchCaptureEvent
.AddOwner(_typeofThis);
4144
add { AddHandler(Touch.
LostTouchCaptureEvent
, value, false); }
4145
remove { RemoveHandler(Touch.
LostTouchCaptureEvent
, value); }
System\Windows\Generated\UIElement3D.cs (3)
1908
public static readonly RoutedEvent LostTouchCaptureEvent = Touch.
LostTouchCaptureEvent
.AddOwner(_typeofThis);
1916
add { AddHandler(Touch.
LostTouchCaptureEvent
, value, false); }
1917
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)