2 instantiations of ManipulationCompletedEventArgs
PresentationCore (2)
Core\CSharp\System\Windows\Input\ManipulationLogic.cs (2)
180return new ManipulationCompletedEventArgs( 254return new ManipulationCompletedEventArgs(
17 references to ManipulationCompletedEventArgs
PresentationCore (14)
Core\CSharp\System\Windows\Input\Manipulation.cs (1)
27internal static readonly RoutedEvent ManipulationCompletedEvent = EventManager.RegisterRoutedEvent("ManipulationCompleted", RoutingStrategy.Bubble, typeof(EventHandler<ManipulationCompletedEventArgs>), typeof(ManipulationDevice));
Core\CSharp\System\Windows\Input\ManipulationCompletedEventArgs.cs (1)
70((EventHandler<ManipulationCompletedEventArgs>)genericHandler)(genericTarget, this);
Core\CSharp\System\Windows\Input\ManipulationDevice.cs (2)
475ManipulationCompletedEventArgs completedEventArgs = inputEventArgs as ManipulationCompletedEventArgs;
Core\CSharp\System\Windows\Input\ManipulationLogic.cs (6)
91ManipulationCompletedEventArgs completedArguments = ConvertCompletedArguments(e); 148ManipulationCompletedEventArgs completedArguments = ConvertCompletedArguments(e); 161private void RaiseManipulationCompleted(ManipulationCompletedEventArgs e) 178private ManipulationCompletedEventArgs ConvertCompletedArguments(Manipulation2DCompletedEventArgs e) 251private ManipulationCompletedEventArgs GetManipulationCompletedArguments(ManipulationInertiaStartingEventArgs e) 286ManipulationCompletedEventArgs completedArguments = GetManipulationCompletedArguments(e);
Core\CSharp\System\Windows\UIElement.cs (4)
111EventManager.RegisterClassHandler(typeof(UIElement), ManipulationCompletedEvent, new EventHandler<ManipulationCompletedEventArgs>(OnManipulationCompletedThunk)); 4556public event EventHandler<ManipulationCompletedEventArgs> ManipulationCompleted 4562private static void OnManipulationCompletedThunk(object sender, ManipulationCompletedEventArgs e) 4570protected virtual void OnManipulationCompleted(ManipulationCompletedEventArgs e) { }
PresentationFramework (3)
src\Framework\System\Windows\Controls\ScrollViewer.cs (1)
1981protected override void OnManipulationCompleted(ManipulationCompletedEventArgs e)
src\Framework\System\Windows\Window.cs (2)
111new EventHandler<ManipulationCompletedEventArgs>(OnStaticManipulationCompleted), 7418private static void OnStaticManipulationCompleted(object sender, ManipulationCompletedEventArgs e)