2 instantiations of ManipulationCompletedEventArgs
PresentationCore (2)
System\Windows\Input\ManipulationLogic.cs (2)
156
return new
ManipulationCompletedEventArgs
(
230
return new
ManipulationCompletedEventArgs
(
17 references to ManipulationCompletedEventArgs
PresentationCore (14)
System\Windows\Input\Manipulation.cs (1)
28
internal static readonly RoutedEvent ManipulationCompletedEvent = EventManager.RegisterRoutedEvent("ManipulationCompleted", RoutingStrategy.Bubble, typeof(EventHandler<
ManipulationCompletedEventArgs
>), typeof(ManipulationDevice));
System\Windows\Input\ManipulationCompletedEventArgs.cs (1)
59
((EventHandler<
ManipulationCompletedEventArgs
>)genericHandler)(genericTarget, this);
System\Windows\Input\ManipulationDevice.cs (2)
424
ManipulationCompletedEventArgs
completedEventArgs = inputEventArgs as
ManipulationCompletedEventArgs
;
System\Windows\Input\ManipulationLogic.cs (6)
77
ManipulationCompletedEventArgs
completedArguments = ConvertCompletedArguments(e);
129
ManipulationCompletedEventArgs
completedArguments = ConvertCompletedArguments(e);
137
private void RaiseManipulationCompleted(
ManipulationCompletedEventArgs
e)
154
private
ManipulationCompletedEventArgs
ConvertCompletedArguments(Manipulation2DCompletedEventArgs e)
227
private
ManipulationCompletedEventArgs
GetManipulationCompletedArguments(ManipulationInertiaStartingEventArgs e)
262
ManipulationCompletedEventArgs
completedArguments = GetManipulationCompletedArguments(e);
System\Windows\UIElement.cs (4)
104
EventManager.RegisterClassHandler(typeof(UIElement), ManipulationCompletedEvent, new EventHandler<
ManipulationCompletedEventArgs
>(OnManipulationCompletedThunk));
4513
public event EventHandler<
ManipulationCompletedEventArgs
> ManipulationCompleted
4519
private static void OnManipulationCompletedThunk(object sender,
ManipulationCompletedEventArgs
e)
4527
protected virtual void OnManipulationCompleted(
ManipulationCompletedEventArgs
e) { }
PresentationFramework (3)
System\Windows\Controls\ScrollViewer.cs (1)
1935
protected override void OnManipulationCompleted(
ManipulationCompletedEventArgs
e)
System\Windows\Window.cs (2)
101
new EventHandler<
ManipulationCompletedEventArgs
>(OnStaticManipulationCompleted),
7094
private static void OnStaticManipulationCompleted(object sender,
ManipulationCompletedEventArgs
e)