2 instantiations of ManipulationCompletedEventArgs
PresentationCore (2)
System\Windows\Input\ManipulationLogic.cs (2)
148
return new
ManipulationCompletedEventArgs
(
222
return new
ManipulationCompletedEventArgs
(
17 references to ManipulationCompletedEventArgs
PresentationCore (14)
System\Windows\Input\Manipulation.cs (1)
24
internal static readonly RoutedEvent ManipulationCompletedEvent = EventManager.RegisterRoutedEvent("ManipulationCompleted", RoutingStrategy.Bubble, typeof(EventHandler<
ManipulationCompletedEventArgs
>), typeof(ManipulationDevice));
System\Windows\Input\ManipulationCompletedEventArgs.cs (1)
51
((EventHandler<
ManipulationCompletedEventArgs
>)genericHandler)(genericTarget, this);
System\Windows\Input\ManipulationDevice.cs (2)
408
ManipulationCompletedEventArgs
completedEventArgs = inputEventArgs as
ManipulationCompletedEventArgs
;
System\Windows\Input\ManipulationLogic.cs (6)
69
ManipulationCompletedEventArgs
completedArguments = ConvertCompletedArguments(e);
121
ManipulationCompletedEventArgs
completedArguments = ConvertCompletedArguments(e);
129
private void RaiseManipulationCompleted(
ManipulationCompletedEventArgs
e)
146
private
ManipulationCompletedEventArgs
ConvertCompletedArguments(Manipulation2DCompletedEventArgs e)
219
private
ManipulationCompletedEventArgs
GetManipulationCompletedArguments(ManipulationInertiaStartingEventArgs e)
256
ManipulationCompletedEventArgs
completedArguments = GetManipulationCompletedArguments(e);
System\Windows\UIElement.cs (4)
94
EventManager.RegisterClassHandler(typeof(UIElement), ManipulationCompletedEvent, new EventHandler<
ManipulationCompletedEventArgs
>(OnManipulationCompletedThunk));
4492
public event EventHandler<
ManipulationCompletedEventArgs
> ManipulationCompleted
4498
private static void OnManipulationCompletedThunk(object sender,
ManipulationCompletedEventArgs
e)
4506
protected virtual void OnManipulationCompleted(
ManipulationCompletedEventArgs
e) { }
PresentationFramework (3)
System\Windows\Controls\ScrollViewer.cs (1)
1925
protected override void OnManipulationCompleted(
ManipulationCompletedEventArgs
e)
System\Windows\Window.cs (2)
82
new EventHandler<
ManipulationCompletedEventArgs
>(OnStaticManipulationCompleted),
7056
private static void OnStaticManipulationCompleted(object sender,
ManipulationCompletedEventArgs
e)