1 instantiation of ManipulationDeltaEventArgs
PresentationCore (1)
System\Windows\Input\ManipulationLogic.cs (1)
53
var deltaArguments = new
ManipulationDeltaEventArgs
(
11 references to ManipulationDeltaEventArgs
PresentationCore (9)
System\Windows\Input\Manipulation.cs (1)
25
internal static readonly RoutedEvent ManipulationDeltaEvent = EventManager.RegisterRoutedEvent("ManipulationDelta", RoutingStrategy.Bubble, typeof(EventHandler<
ManipulationDeltaEventArgs
>), typeof(ManipulationDevice));
System\Windows\Input\ManipulationDeltaEventArgs.cs (1)
63
((EventHandler<
ManipulationDeltaEventArgs
>)genericHandler)(genericTarget, this);
System\Windows\Input\ManipulationDevice.cs (2)
347
ManipulationDeltaEventArgs
deltaEventArgs = inputEventArgs as
ManipulationDeltaEventArgs
;
System\Windows\Input\ManipulationLogic.cs (1)
53
var
deltaArguments = new ManipulationDeltaEventArgs(
System\Windows\UIElement.cs (4)
101
EventManager.RegisterClassHandler(typeof(UIElement), ManipulationDeltaEvent, new EventHandler<
ManipulationDeltaEventArgs
>(OnManipulationDeltaThunk));
4438
public event EventHandler<
ManipulationDeltaEventArgs
> ManipulationDelta
4444
private static void OnManipulationDeltaThunk(object sender,
ManipulationDeltaEventArgs
e)
4452
protected virtual void OnManipulationDelta(
ManipulationDeltaEventArgs
e) { }
PresentationFramework (2)
System\Windows\Controls\ScrollViewer.cs (2)
1687
protected override void OnManipulationDelta(
ManipulationDeltaEventArgs
e)
1733
private void ManipulateScroll(
ManipulationDeltaEventArgs
e)