14 references to TouchUpEvent
PresentationCore (14)
Core\CSharp\System\Windows\Generated\ContentElement.cs (3)
2215
public static readonly RoutedEvent TouchUpEvent = Touch.
TouchUpEvent
.AddOwner(_typeofThis);
2223
add { AddHandler(Touch.
TouchUpEvent
, value, false); }
2224
remove { RemoveHandler(Touch.
TouchUpEvent
, value); }
Core\CSharp\System\Windows\Generated\UIElement.cs (4)
880
EventManager.RegisterClassHandler(type, Touch.
TouchUpEvent
, new EventHandler<TouchEventArgs>(UIElement.OnTouchUpThunk), false);
4493
public static readonly RoutedEvent TouchUpEvent = Touch.
TouchUpEvent
.AddOwner(_typeofThis);
4501
add { AddHandler(Touch.
TouchUpEvent
, value, false); }
4502
remove { RemoveHandler(Touch.
TouchUpEvent
, value); }
Core\CSharp\System\Windows\Generated\UIElement3D.cs (3)
1921
public static readonly RoutedEvent TouchUpEvent = Touch.
TouchUpEvent
.AddOwner(_typeofThis);
1929
add { AddHandler(Touch.
TouchUpEvent
, value, false); }
1930
remove { RemoveHandler(Touch.
TouchUpEvent
, value); }
Core\CSharp\System\Windows\Input\TouchDevice.cs (4)
1106
routedEvent == Touch.
TouchUpEvent
)
1145
return Touch.
TouchUpEvent
;
1150
(routedEvent == Touch.
TouchUpEvent
) ||
1177
else if ((routedEvent == Touch.
TouchUpEvent
) && PromotingToManipulation)