1 instantiation of ManipulationDeltaEventArgs
PresentationCore (1)
Core\CSharp\System\Windows\Input\ManipulationLogic.cs (1)
62var deltaArguments = new ManipulationDeltaEventArgs(
11 references to ManipulationDeltaEventArgs
PresentationCore (9)
Core\CSharp\System\Windows\Input\Manipulation.cs (1)
24internal static readonly RoutedEvent ManipulationDeltaEvent = EventManager.RegisterRoutedEvent("ManipulationDelta", RoutingStrategy.Bubble, typeof(EventHandler<ManipulationDeltaEventArgs>), typeof(ManipulationDevice));
Core\CSharp\System\Windows\Input\ManipulationDeltaEventArgs.cs (1)
77((EventHandler<ManipulationDeltaEventArgs>)genericHandler)(genericTarget, this);
Core\CSharp\System\Windows\Input\ManipulationDevice.cs (2)
398ManipulationDeltaEventArgs deltaEventArgs = inputEventArgs as ManipulationDeltaEventArgs;
Core\CSharp\System\Windows\Input\ManipulationLogic.cs (1)
62var deltaArguments = new ManipulationDeltaEventArgs(
Core\CSharp\System\Windows\UIElement.cs (4)
108EventManager.RegisterClassHandler(typeof(UIElement), ManipulationDeltaEvent, new EventHandler<ManipulationDeltaEventArgs>(OnManipulationDeltaThunk)); 4481public event EventHandler<ManipulationDeltaEventArgs> ManipulationDelta 4487private static void OnManipulationDeltaThunk(object sender, ManipulationDeltaEventArgs e) 4495protected virtual void OnManipulationDelta(ManipulationDeltaEventArgs e) { }
PresentationFramework (2)
src\Framework\System\Windows\Controls\ScrollViewer.cs (2)
1733protected override void OnManipulationDelta(ManipulationDeltaEventArgs e) 1779private void ManipulateScroll(ManipulationDeltaEventArgs e)