1 instantiation of ManipulationDevice
PresentationCore (1)
System\Windows\Input\ManipulationDevice.cs (1)
86device = new ManipulationDevice(element);
48 references to ManipulationDevice
PresentationCore (48)
System\Windows\Input\Manipulation.cs (27)
19internal static readonly RoutedEvent ManipulationStartingEvent = EventManager.RegisterRoutedEvent("ManipulationStarting", RoutingStrategy.Bubble, typeof(EventHandler<ManipulationStartingEventArgs>), typeof(ManipulationDevice)); 20internal static readonly RoutedEvent ManipulationStartedEvent = EventManager.RegisterRoutedEvent("ManipulationStarted", RoutingStrategy.Bubble, typeof(EventHandler<ManipulationStartedEventArgs>), typeof(ManipulationDevice)); 21internal static readonly RoutedEvent ManipulationDeltaEvent = EventManager.RegisterRoutedEvent("ManipulationDelta", RoutingStrategy.Bubble, typeof(EventHandler<ManipulationDeltaEventArgs>), typeof(ManipulationDevice)); 22internal static readonly RoutedEvent ManipulationInertiaStartingEvent = EventManager.RegisterRoutedEvent("ManipulationInertiaStarting", RoutingStrategy.Bubble, typeof(EventHandler<ManipulationInertiaStartingEventArgs>), typeof(ManipulationDevice)); 23internal static readonly RoutedEvent ManipulationBoundaryFeedbackEvent = EventManager.RegisterRoutedEvent("ManipulationBoundaryFeedback", RoutingStrategy.Bubble, typeof(EventHandler<ManipulationBoundaryFeedbackEventArgs>), typeof(ManipulationDevice)); 24internal static readonly RoutedEvent ManipulationCompletedEvent = EventManager.RegisterRoutedEvent("ManipulationCompleted", RoutingStrategy.Bubble, typeof(EventHandler<ManipulationCompletedEventArgs>), typeof(ManipulationDevice)); 38private static ManipulationDevice GetActiveManipulationDevice(UIElement element) 42ManipulationDevice device = ManipulationDevice.GetManipulationDevice(element); 60ManipulationDevice device = ManipulationDevice.GetManipulationDevice(element); 79ManipulationDevice device = ManipulationDevice.GetManipulationDevice(element); 98ManipulationDevice device = GetActiveManipulationDevice(element); 118ManipulationDevice device = ManipulationDevice.GetManipulationDevice(element); 139ManipulationDevice device = GetActiveManipulationDevice(element); 160ManipulationDevice device = ManipulationDevice.GetManipulationDevice(element); 178ManipulationDevice device = GetActiveManipulationDevice(element); 198ManipulationDevice device = ManipulationDevice.GetManipulationDevice(element); 222ManipulationDevice device = ManipulationDevice.AddManipulationDevice(element); 245ManipulationDevice device = ManipulationDevice.GetManipulationDevice(element); 266ManipulationDevice device = GetActiveManipulationDevice(element);
System\Windows\Input\ManipulationBoundaryFeedbackEventArgs.cs (2)
18ManipulationDevice manipulationDevice, 86_manipulators = ((ManipulationDevice)Device).GetManipulatorsReadOnly();
System\Windows\Input\ManipulationCompletedEventArgs.cs (2)
18ManipulationDevice manipulationDevice, 136_manipulators = ((ManipulationDevice)Device).GetManipulatorsReadOnly();
System\Windows\Input\ManipulationDeltaEventArgs.cs (2)
18ManipulationDevice manipulationDevice, 210_manipulators = ((ManipulationDevice)Device).GetManipulatorsReadOnly();
System\Windows\Input\ManipulationDevice.cs (7)
72internal static ManipulationDevice AddManipulationDevice(UIElement element) 78ManipulationDevice device = GetManipulationDevice(element); 83_manipulationDevices = new Dictionary<UIElement, ManipulationDevice>(2); 101internal static ManipulationDevice GetManipulationDevice(UIElement element) 107ManipulationDevice device; 245ManipulationDevice device = _manipulationDevices[element]; 517private static Dictionary<UIElement, ManipulationDevice> _manipulationDevices;
System\Windows\Input\ManipulationInertiaStartingEventArgs.cs (2)
21ManipulationDevice manipulationDevice, 181_manipulators = ((ManipulationDevice)Device).GetManipulatorsReadOnly();
System\Windows\Input\ManipulationLogic.cs (2)
23internal ManipulationLogic(ManipulationDevice manipulationDevice) 698private ManipulationDevice _manipulationDevice;
System\Windows\Input\ManipulationStartedEventArgs.cs (2)
18ManipulationDevice manipulationDevice, 114_manipulators = ((ManipulationDevice)Device).GetManipulatorsReadOnly();
System\Windows\Input\ManipulationStartingEventArgs.cs (2)
16ManipulationDevice manipulationDevice, 98_manipulators = ((ManipulationDevice)Device).GetManipulatorsReadOnly();