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