1 instantiation of ManipulationStartedEventArgs
PresentationCore (1)
Core\CSharp\System\Windows\Input\ManipulationLogic.cs (1)
45PushEvent(new ManipulationStartedEventArgs(
8 references to ManipulationStartedEventArgs
PresentationCore (8)
Core\CSharp\System\Windows\Input\Manipulation.cs (1)
23internal static readonly RoutedEvent ManipulationStartedEvent = EventManager.RegisterRoutedEvent("ManipulationStarted", RoutingStrategy.Bubble, typeof(EventHandler<ManipulationStartedEventArgs>), typeof(ManipulationDevice));
Core\CSharp\System\Windows\Input\ManipulationDevice.cs (2)
429ManipulationStartedEventArgs startedEventArgs = inputEventArgs as ManipulationStartedEventArgs;
Core\CSharp\System\Windows\Input\ManipulationStartedEventArgs.cs (1)
54((EventHandler<ManipulationStartedEventArgs>)genericHandler)(genericTarget, this);
Core\CSharp\System\Windows\UIElement.cs (4)
107EventManager.RegisterClassHandler(typeof(UIElement), ManipulationStartedEvent, new EventHandler<ManipulationStartedEventArgs>(OnManipulationStartedThunk)); 4456public event EventHandler<ManipulationStartedEventArgs> ManipulationStarted 4462private static void OnManipulationStartedThunk(object sender, ManipulationStartedEventArgs e) 4470protected virtual void OnManipulationStarted(ManipulationStartedEventArgs e) { }