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