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