1 instantiation of ManipulationStartingEventArgs
PresentationCore (1)
Core\CSharp\System\Windows\Input\ManipulationLogic.cs (1)
467ManipulationStartingEventArgs starting = new ManipulationStartingEventArgs(_manipulationDevice, Environment.TickCount);
13 references to ManipulationStartingEventArgs
PresentationCore (11)
Core\CSharp\System\Windows\Input\Manipulation.cs (1)
22internal static readonly RoutedEvent ManipulationStartingEvent = EventManager.RegisterRoutedEvent("ManipulationStarting", RoutingStrategy.Bubble, typeof(EventHandler<ManipulationStartingEventArgs>), typeof(ManipulationDevice));
Core\CSharp\System\Windows\Input\ManipulationDevice.cs (2)
421ManipulationStartingEventArgs startingEventArgs = inputEventArgs as ManipulationStartingEventArgs;
Core\CSharp\System\Windows\Input\ManipulationLogic.cs (3)
420ManipulationStartingEventArgs startingArgs = RaiseStarting(); 465private ManipulationStartingEventArgs RaiseStarting() 467ManipulationStartingEventArgs starting = new ManipulationStartingEventArgs(_manipulationDevice, Environment.TickCount);
Core\CSharp\System\Windows\Input\ManipulationStartingEventArgs.cs (1)
127((EventHandler<ManipulationStartingEventArgs>)genericHandler)(genericTarget, this);
Core\CSharp\System\Windows\UIElement.cs (4)
106EventManager.RegisterClassHandler(typeof(UIElement), ManipulationStartingEvent, new EventHandler<ManipulationStartingEventArgs>(OnManipulationStartingThunk)); 4431public event EventHandler<ManipulationStartingEventArgs> ManipulationStarting 4437private static void OnManipulationStartingThunk(object sender, ManipulationStartingEventArgs e) 4445protected virtual void OnManipulationStarting(ManipulationStartingEventArgs e) { }
PresentationFramework (2)
src\Framework\System\Windows\Controls\ScrollViewer.cs (2)
1628protected override void OnManipulationStarting(ManipulationStartingEventArgs e) 1699private bool ShouldManipulateScroll(ManipulationStartingEventArgs e, ScrollContentPresenter viewport)