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