28 references to Manipulation
PresentationCore (28)
System\Windows\Input\ManipulationBoundaryFeedbackEventArgs.cs (2)
24RoutedEvent = Manipulation.ManipulationBoundaryFeedbackEvent; 39if (RoutedEvent == Manipulation.ManipulationBoundaryFeedbackEvent)
System\Windows\Input\ManipulationCompletedEventArgs.cs (2)
31RoutedEvent = Manipulation.ManipulationCompletedEvent; 49if (RoutedEvent == Manipulation.ManipulationCompletedEvent)
System\Windows\Input\ManipulationDeltaEventArgs.cs (2)
34RoutedEvent = Manipulation.ManipulationDeltaEvent; 53if (RoutedEvent == Manipulation.ManipulationDeltaEvent)
System\Windows\Input\ManipulationDevice.cs (6)
329if (routedEvent == Manipulation.ManipulationDeltaEvent) 352else if (routedEvent == Manipulation.ManipulationStartingEvent) 360else if (routedEvent == Manipulation.ManipulationStartedEvent) 383else if (routedEvent == Manipulation.ManipulationInertiaStartingEvent) 405else if (routedEvent == Manipulation.ManipulationCompletedEvent) 424else if (routedEvent == Manipulation.ManipulationBoundaryFeedbackEvent)
System\Windows\Input\ManipulationInertiaStartingEventArgs.cs (2)
31RoutedEvent = Manipulation.ManipulationInertiaStartingEvent; 48if (RoutedEvent == Manipulation.ManipulationInertiaStartingEvent)
System\Windows\Input\ManipulationStartedEventArgs.cs (2)
24RoutedEvent = Manipulation.ManipulationStartedEvent; 39if (RoutedEvent == Manipulation.ManipulationStartedEvent)
System\Windows\Input\ManipulationStartingEventArgs.cs (2)
20RoutedEvent = Manipulation.ManipulationStartingEvent; 113if (RoutedEvent == Manipulation.ManipulationStartingEvent)
System\Windows\Input\TouchDevice.cs (3)
1061element = Manipulation.FindManipulationParent(element); 1091Manipulation.AddManipulator(element, this); 1103Manipulation.TryRemoveManipulator(element, this);
System\Windows\UIElement.cs (7)
4333Manipulation.TryCompleteManipulation((UIElement)d); 4361public static readonly RoutedEvent ManipulationStartingEvent = Manipulation.ManipulationStartingEvent.AddOwner(typeof(UIElement)); 4386public static readonly RoutedEvent ManipulationStartedEvent = Manipulation.ManipulationStartedEvent.AddOwner(typeof(UIElement)); 4411public static readonly RoutedEvent ManipulationDeltaEvent = Manipulation.ManipulationDeltaEvent.AddOwner(typeof(UIElement)); 4436public static readonly RoutedEvent ManipulationInertiaStartingEvent = Manipulation.ManipulationInertiaStartingEvent.AddOwner(typeof(UIElement)); 4461public static readonly RoutedEvent ManipulationBoundaryFeedbackEvent = Manipulation.ManipulationBoundaryFeedbackEvent.AddOwner(typeof(UIElement)); 4486public static readonly RoutedEvent ManipulationCompletedEvent = Manipulation.ManipulationCompletedEvent.AddOwner(typeof(UIElement));