1 instantiation of ManipulationStartingEventArgs
PresentationCore (1)
System\Windows\Input\ManipulationLogic.cs (1)
416
ManipulationStartingEventArgs starting = new
ManipulationStartingEventArgs
(_manipulationDevice, Environment.TickCount);
13 references to ManipulationStartingEventArgs
PresentationCore (11)
System\Windows\Input\Manipulation.cs (1)
20
internal static readonly RoutedEvent ManipulationStartingEvent = EventManager.RegisterRoutedEvent("ManipulationStarting", RoutingStrategy.Bubble, typeof(EventHandler<
ManipulationStartingEventArgs
>), typeof(ManipulationDevice));
System\Windows\Input\ManipulationDevice.cs (2)
361
ManipulationStartingEventArgs
startingEventArgs = inputEventArgs as
ManipulationStartingEventArgs
;
System\Windows\Input\ManipulationLogic.cs (3)
374
ManipulationStartingEventArgs
startingArgs = RaiseStarting();
414
private
ManipulationStartingEventArgs
RaiseStarting()
416
ManipulationStartingEventArgs
starting = new ManipulationStartingEventArgs(_manipulationDevice, Environment.TickCount);
System\Windows\Input\ManipulationStartingEventArgs.cs (1)
116
((EventHandler<
ManipulationStartingEventArgs
>)genericHandler)(genericTarget, this);
System\Windows\UIElement.cs (4)
94
EventManager.RegisterClassHandler(typeof(UIElement), ManipulationStartingEvent, new EventHandler<
ManipulationStartingEventArgs
>(OnManipulationStartingThunk));
4383
public event EventHandler<
ManipulationStartingEventArgs
> ManipulationStarting
4389
private static void OnManipulationStartingThunk(object sender,
ManipulationStartingEventArgs
e)
4397
protected virtual void OnManipulationStarting(
ManipulationStartingEventArgs
e) { }
PresentationFramework (2)
System\Windows\Controls\ScrollViewer.cs (2)
1574
protected override void OnManipulationStarting(
ManipulationStartingEventArgs
e)
1645
private bool ShouldManipulateScroll(
ManipulationStartingEventArgs
e, ScrollContentPresenter viewport)