1 instantiation of ManipulationStartedEventArgs
PresentationCore (1)
System\Windows\Input\ManipulationLogic.cs (1)
34PushEvent(new ManipulationStartedEventArgs(
8 references to ManipulationStartedEventArgs
PresentationCore (8)
System\Windows\Input\Manipulation.cs (1)
21internal static readonly RoutedEvent ManipulationStartedEvent = EventManager.RegisterRoutedEvent("ManipulationStarted", RoutingStrategy.Bubble, typeof(EventHandler<ManipulationStartedEventArgs>), typeof(ManipulationDevice));
System\Windows\Input\ManipulationDevice.cs (2)
363ManipulationStartedEventArgs startedEventArgs = inputEventArgs as ManipulationStartedEventArgs;
System\Windows\Input\ManipulationStartedEventArgs.cs (1)
42((EventHandler<ManipulationStartedEventArgs>)genericHandler)(genericTarget, this);
System\Windows\UIElement.cs (4)
91EventManager.RegisterClassHandler(typeof(UIElement), ManipulationStartedEvent, new EventHandler<ManipulationStartedEventArgs>(OnManipulationStartedThunk)); 4393public event EventHandler<ManipulationStartedEventArgs> ManipulationStarted 4399private static void OnManipulationStartedThunk(object sender, ManipulationStartedEventArgs e) 4407protected virtual void OnManipulationStarted(ManipulationStartedEventArgs e) { }