2 instantiations of ManipulationCompletedEventArgs
PresentationCore (2)
System\Windows\Input\ManipulationLogic.cs (2)
149
return new
ManipulationCompletedEventArgs
(
223
return new
ManipulationCompletedEventArgs
(
17 references to ManipulationCompletedEventArgs
PresentationCore (14)
System\Windows\Input\Manipulation.cs (1)
25
internal static readonly RoutedEvent ManipulationCompletedEvent = EventManager.RegisterRoutedEvent("ManipulationCompleted", RoutingStrategy.Bubble, typeof(EventHandler<
ManipulationCompletedEventArgs
>), typeof(ManipulationDevice));
System\Windows\Input\ManipulationCompletedEventArgs.cs (1)
52
((EventHandler<
ManipulationCompletedEventArgs
>)genericHandler)(genericTarget, this);
System\Windows\Input\ManipulationDevice.cs (2)
409
ManipulationCompletedEventArgs
completedEventArgs = inputEventArgs as
ManipulationCompletedEventArgs
;
System\Windows\Input\ManipulationLogic.cs (6)
70
ManipulationCompletedEventArgs
completedArguments = ConvertCompletedArguments(e);
122
ManipulationCompletedEventArgs
completedArguments = ConvertCompletedArguments(e);
130
private void RaiseManipulationCompleted(
ManipulationCompletedEventArgs
e)
147
private
ManipulationCompletedEventArgs
ConvertCompletedArguments(Manipulation2DCompletedEventArgs e)
220
private
ManipulationCompletedEventArgs
GetManipulationCompletedArguments(ManipulationInertiaStartingEventArgs e)
257
ManipulationCompletedEventArgs
completedArguments = GetManipulationCompletedArguments(e);
System\Windows\UIElement.cs (4)
95
EventManager.RegisterClassHandler(typeof(UIElement), ManipulationCompletedEvent, new EventHandler<
ManipulationCompletedEventArgs
>(OnManipulationCompletedThunk));
4493
public event EventHandler<
ManipulationCompletedEventArgs
> ManipulationCompleted
4499
private static void OnManipulationCompletedThunk(object sender,
ManipulationCompletedEventArgs
e)
4507
protected virtual void OnManipulationCompleted(
ManipulationCompletedEventArgs
e) { }
PresentationFramework (3)
System\Windows\Controls\ScrollViewer.cs (1)
1926
protected override void OnManipulationCompleted(
ManipulationCompletedEventArgs
e)
System\Windows\Window.cs (2)
83
new EventHandler<
ManipulationCompletedEventArgs
>(OnStaticManipulationCompleted),
7057
private static void OnStaticManipulationCompleted(object sender,
ManipulationCompletedEventArgs
e)