1 instantiation of ManipulationStartedEventArgs
PresentationCore (1)
Core\CSharp\System\Windows\Input\ManipulationLogic.cs (1)
45
PushEvent(new
ManipulationStartedEventArgs
(
8 references to ManipulationStartedEventArgs
PresentationCore (8)
Core\CSharp\System\Windows\Input\Manipulation.cs (1)
23
internal static readonly RoutedEvent ManipulationStartedEvent = EventManager.RegisterRoutedEvent("ManipulationStarted", RoutingStrategy.Bubble, typeof(EventHandler<
ManipulationStartedEventArgs
>), typeof(ManipulationDevice));
Core\CSharp\System\Windows\Input\ManipulationDevice.cs (2)
429
ManipulationStartedEventArgs
startedEventArgs = inputEventArgs as
ManipulationStartedEventArgs
;
Core\CSharp\System\Windows\Input\ManipulationStartedEventArgs.cs (1)
54
((EventHandler<
ManipulationStartedEventArgs
>)genericHandler)(genericTarget, this);
Core\CSharp\System\Windows\UIElement.cs (4)
107
EventManager.RegisterClassHandler(typeof(UIElement), ManipulationStartedEvent, new EventHandler<
ManipulationStartedEventArgs
>(OnManipulationStartedThunk));
4456
public event EventHandler<
ManipulationStartedEventArgs
> ManipulationStarted
4462
private static void OnManipulationStartedThunk(object sender,
ManipulationStartedEventArgs
e)
4470
protected virtual void OnManipulationStarted(
ManipulationStartedEventArgs
e) { }