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