13 references to LostTouchCaptureEvent
PresentationCore (13)
System\Windows\Generated\ContentElement.cs (3)
2195
public static readonly RoutedEvent LostTouchCaptureEvent = Touch.
LostTouchCaptureEvent
.AddOwner(_typeofThis);
2203
add { AddHandler(Touch.
LostTouchCaptureEvent
, value, false); }
2204
remove { RemoveHandler(Touch.
LostTouchCaptureEvent
, value); }
System\Windows\Generated\UIElement.cs (4)
817
EventManager.RegisterClassHandler(type, Touch.
LostTouchCaptureEvent
, new EventHandler<TouchEventArgs>(UIElement.OnLostTouchCaptureThunk), false);
4148
public static readonly RoutedEvent LostTouchCaptureEvent = Touch.
LostTouchCaptureEvent
.AddOwner(_typeofThis);
4156
add { AddHandler(Touch.
LostTouchCaptureEvent
, value, false); }
4157
remove { RemoveHandler(Touch.
LostTouchCaptureEvent
, value); }
System\Windows\Generated\UIElement3D.cs (3)
1916
public static readonly RoutedEvent LostTouchCaptureEvent = Touch.
LostTouchCaptureEvent
.AddOwner(_typeofThis);
1924
add { AddHandler(Touch.
LostTouchCaptureEvent
, value, false); }
1925
remove { RemoveHandler(Touch.
LostTouchCaptureEvent
, value); }
System\Windows\Input\TouchDevice.cs (3)
616
TouchEventArgs e = CreateEventArgs(Touch.
LostTouchCaptureEvent
);
1063
(routedEvent == Touch.
LostTouchCaptureEvent
);
1107
else if ((routedEvent == Touch.
LostTouchCaptureEvent
) && PromotingToManipulation && _manipulatingElement != null)