13 references to LostTouchCaptureEvent
PresentationCore (13)
System\Windows\Generated\ContentElement.cs (3)
2179
public static readonly RoutedEvent LostTouchCaptureEvent = Touch.
LostTouchCaptureEvent
.AddOwner(_typeofThis);
2187
add { AddHandler(Touch.
LostTouchCaptureEvent
, value, false); }
2188
remove { RemoveHandler(Touch.
LostTouchCaptureEvent
, value); }
System\Windows\Generated\UIElement.cs (4)
801
EventManager.RegisterClassHandler(type, Touch.
LostTouchCaptureEvent
, new EventHandler<TouchEventArgs>(UIElement.OnLostTouchCaptureThunk), false);
4132
public static readonly RoutedEvent LostTouchCaptureEvent = Touch.
LostTouchCaptureEvent
.AddOwner(_typeofThis);
4140
add { AddHandler(Touch.
LostTouchCaptureEvent
, value, false); }
4141
remove { RemoveHandler(Touch.
LostTouchCaptureEvent
, value); }
System\Windows\Generated\UIElement3D.cs (3)
1909
public static readonly RoutedEvent LostTouchCaptureEvent = Touch.
LostTouchCaptureEvent
.AddOwner(_typeofThis);
1917
add { AddHandler(Touch.
LostTouchCaptureEvent
, value, false); }
1918
remove { RemoveHandler(Touch.
LostTouchCaptureEvent
, value); }
System\Windows\Input\TouchDevice.cs (3)
603
TouchEventArgs e = CreateEventArgs(Touch.
LostTouchCaptureEvent
);
1052
(routedEvent == Touch.
LostTouchCaptureEvent
);
1096
else if ((routedEvent == Touch.
LostTouchCaptureEvent
) && PromotingToManipulation && _manipulatingElement != null)