1 instantiation of ManipulationStartedEventArgs
PresentationCore (1)
System\Windows\Input\ManipulationLogic.cs (1)
41
PushEvent(new
ManipulationStartedEventArgs
(
8 references to ManipulationStartedEventArgs
PresentationCore (8)
System\Windows\Input\Manipulation.cs (1)
24
internal static readonly RoutedEvent ManipulationStartedEvent = EventManager.RegisterRoutedEvent("ManipulationStarted", RoutingStrategy.Bubble, typeof(EventHandler<
ManipulationStartedEventArgs
>), typeof(ManipulationDevice));
System\Windows\Input\ManipulationDevice.cs (2)
378
ManipulationStartedEventArgs
startedEventArgs = inputEventArgs as
ManipulationStartedEventArgs
;
System\Windows\Input\ManipulationStartedEventArgs.cs (1)
49
((EventHandler<
ManipulationStartedEventArgs
>)genericHandler)(genericTarget, this);
System\Windows\UIElement.cs (4)
100
EventManager.RegisterClassHandler(typeof(UIElement), ManipulationStartedEvent, new EventHandler<
ManipulationStartedEventArgs
>(OnManipulationStartedThunk));
4413
public event EventHandler<
ManipulationStartedEventArgs
> ManipulationStarted
4419
private static void OnManipulationStartedThunk(object sender,
ManipulationStartedEventArgs
e)
4427
protected virtual void OnManipulationStarted(
ManipulationStartedEventArgs
e) { }