13 references to LostTouchCaptureEvent
PresentationCore (13)
Core\CSharp\System\Windows\Generated\ContentElement.cs (3)
2255
public static readonly RoutedEvent LostTouchCaptureEvent = Touch.
LostTouchCaptureEvent
.AddOwner(_typeofThis);
2263
add { AddHandler(Touch.
LostTouchCaptureEvent
, value, false); }
2264
remove { RemoveHandler(Touch.
LostTouchCaptureEvent
, value); }
Core\CSharp\System\Windows\Generated\UIElement.cs (4)
882
EventManager.RegisterClassHandler(type, Touch.
LostTouchCaptureEvent
, new EventHandler<TouchEventArgs>(UIElement.OnLostTouchCaptureThunk), false);
4533
public static readonly RoutedEvent LostTouchCaptureEvent = Touch.
LostTouchCaptureEvent
.AddOwner(_typeofThis);
4541
add { AddHandler(Touch.
LostTouchCaptureEvent
, value, false); }
4542
remove { RemoveHandler(Touch.
LostTouchCaptureEvent
, value); }
Core\CSharp\System\Windows\Generated\UIElement3D.cs (3)
1961
public static readonly RoutedEvent LostTouchCaptureEvent = Touch.
LostTouchCaptureEvent
.AddOwner(_typeofThis);
1969
add { AddHandler(Touch.
LostTouchCaptureEvent
, value, false); }
1970
remove { RemoveHandler(Touch.
LostTouchCaptureEvent
, value); }
Core\CSharp\System\Windows\Input\TouchDevice.cs (3)
663
TouchEventArgs e = CreateEventArgs(Touch.
LostTouchCaptureEvent
);
1152
(routedEvent == Touch.
LostTouchCaptureEvent
);
1196
else if ((routedEvent == Touch.
LostTouchCaptureEvent
) && PromotingToManipulation && _manipulatingElement != null)