28 references to Manipulation
PresentationCore (28)
Core\CSharp\System\Windows\Input\ManipulationBoundaryFeedbackEventArgs.cs (2)
31RoutedEvent = Manipulation.ManipulationBoundaryFeedbackEvent; 52if (RoutedEvent == Manipulation.ManipulationBoundaryFeedbackEvent)
Core\CSharp\System\Windows\Input\ManipulationCompletedEventArgs.cs (2)
44RoutedEvent = Manipulation.ManipulationCompletedEvent; 68if (RoutedEvent == Manipulation.ManipulationCompletedEvent)
Core\CSharp\System\Windows\Input\ManipulationDeltaEventArgs.cs (2)
50RoutedEvent = Manipulation.ManipulationDeltaEvent; 75if (RoutedEvent == Manipulation.ManipulationDeltaEvent)
Core\CSharp\System\Windows\Input\ManipulationDevice.cs (6)
396if (routedEvent == Manipulation.ManipulationDeltaEvent) 419else if (routedEvent == Manipulation.ManipulationStartingEvent) 427else if (routedEvent == Manipulation.ManipulationStartedEvent) 450else if (routedEvent == Manipulation.ManipulationInertiaStartingEvent) 472else if (routedEvent == Manipulation.ManipulationCompletedEvent) 491else if (routedEvent == Manipulation.ManipulationBoundaryFeedbackEvent)
Core\CSharp\System\Windows\Input\ManipulationInertiaStartingEventArgs.cs (2)
41RoutedEvent = Manipulation.ManipulationInertiaStartingEvent; 64if (RoutedEvent == Manipulation.ManipulationInertiaStartingEvent)
Core\CSharp\System\Windows\Input\ManipulationStartedEventArgs.cs (2)
31RoutedEvent = Manipulation.ManipulationStartedEvent; 52if (RoutedEvent == Manipulation.ManipulationStartedEvent)
Core\CSharp\System\Windows\Input\ManipulationStartingEventArgs.cs (2)
26RoutedEvent = Manipulation.ManipulationStartingEvent; 125if (RoutedEvent == Manipulation.ManipulationStartingEvent)
Core\CSharp\System\Windows\Input\TouchDevice.cs (3)
1161element = Manipulation.FindManipulationParent(element); 1191Manipulation.AddManipulator(element, this); 1203Manipulation.TryRemoveManipulator(element, this);
Core\CSharp\System\Windows\UIElement.cs (7)
4397Manipulation.TryCompleteManipulation((UIElement)d); 4425public static readonly RoutedEvent ManipulationStartingEvent = Manipulation.ManipulationStartingEvent.AddOwner(typeof(UIElement)); 4450public static readonly RoutedEvent ManipulationStartedEvent = Manipulation.ManipulationStartedEvent.AddOwner(typeof(UIElement)); 4475public static readonly RoutedEvent ManipulationDeltaEvent = Manipulation.ManipulationDeltaEvent.AddOwner(typeof(UIElement)); 4500public static readonly RoutedEvent ManipulationInertiaStartingEvent = Manipulation.ManipulationInertiaStartingEvent.AddOwner(typeof(UIElement)); 4525public static readonly RoutedEvent ManipulationBoundaryFeedbackEvent = Manipulation.ManipulationBoundaryFeedbackEvent.AddOwner(typeof(UIElement)); 4550public static readonly RoutedEvent ManipulationCompletedEvent = Manipulation.ManipulationCompletedEvent.AddOwner(typeof(UIElement));