28 references to Manipulation
PresentationCore (28)
System\Windows\Input\ManipulationBoundaryFeedbackEventArgs.cs (2)
32RoutedEvent = Manipulation.ManipulationBoundaryFeedbackEvent; 47if (RoutedEvent == Manipulation.ManipulationBoundaryFeedbackEvent)
System\Windows\Input\ManipulationCompletedEventArgs.cs (2)
39RoutedEvent = Manipulation.ManipulationCompletedEvent; 57if (RoutedEvent == Manipulation.ManipulationCompletedEvent)
System\Windows\Input\ManipulationDeltaEventArgs.cs (2)
42RoutedEvent = Manipulation.ManipulationDeltaEvent; 61if (RoutedEvent == Manipulation.ManipulationDeltaEvent)
System\Windows\Input\ManipulationDevice.cs (6)
345if (routedEvent == Manipulation.ManipulationDeltaEvent) 368else if (routedEvent == Manipulation.ManipulationStartingEvent) 376else if (routedEvent == Manipulation.ManipulationStartedEvent) 399else if (routedEvent == Manipulation.ManipulationInertiaStartingEvent) 421else if (routedEvent == Manipulation.ManipulationCompletedEvent) 440else if (routedEvent == Manipulation.ManipulationBoundaryFeedbackEvent)
System\Windows\Input\ManipulationInertiaStartingEventArgs.cs (2)
39RoutedEvent = Manipulation.ManipulationInertiaStartingEvent; 56if (RoutedEvent == Manipulation.ManipulationInertiaStartingEvent)
System\Windows\Input\ManipulationStartedEventArgs.cs (2)
32RoutedEvent = Manipulation.ManipulationStartedEvent; 47if (RoutedEvent == Manipulation.ManipulationStartedEvent)
System\Windows\Input\ManipulationStartingEventArgs.cs (2)
27RoutedEvent = Manipulation.ManipulationStartingEvent; 120if (RoutedEvent == Manipulation.ManipulationStartingEvent)
System\Windows\Input\TouchDevice.cs (3)
1072element = Manipulation.FindManipulationParent(element); 1102Manipulation.AddManipulator(element, this); 1114Manipulation.TryRemoveManipulator(element, this);
System\Windows\UIElement.cs (7)
4354Manipulation.TryCompleteManipulation((UIElement)d); 4382public static readonly RoutedEvent ManipulationStartingEvent = Manipulation.ManipulationStartingEvent.AddOwner(typeof(UIElement)); 4407public static readonly RoutedEvent ManipulationStartedEvent = Manipulation.ManipulationStartedEvent.AddOwner(typeof(UIElement)); 4432public static readonly RoutedEvent ManipulationDeltaEvent = Manipulation.ManipulationDeltaEvent.AddOwner(typeof(UIElement)); 4457public static readonly RoutedEvent ManipulationInertiaStartingEvent = Manipulation.ManipulationInertiaStartingEvent.AddOwner(typeof(UIElement)); 4482public static readonly RoutedEvent ManipulationBoundaryFeedbackEvent = Manipulation.ManipulationBoundaryFeedbackEvent.AddOwner(typeof(UIElement)); 4507public static readonly RoutedEvent ManipulationCompletedEvent = Manipulation.ManipulationCompletedEvent.AddOwner(typeof(UIElement));