1 instantiation of ManipulationDevice
PresentationCore (1)
System\Windows\Input\ManipulationDevice.cs (1)
87device = new ManipulationDevice(element);
48 references to ManipulationDevice
PresentationCore (48)
System\Windows\Input\Manipulation.cs (27)
20internal static readonly RoutedEvent ManipulationStartingEvent = EventManager.RegisterRoutedEvent("ManipulationStarting", RoutingStrategy.Bubble, typeof(EventHandler<ManipulationStartingEventArgs>), typeof(ManipulationDevice)); 21internal static readonly RoutedEvent ManipulationStartedEvent = EventManager.RegisterRoutedEvent("ManipulationStarted", RoutingStrategy.Bubble, typeof(EventHandler<ManipulationStartedEventArgs>), typeof(ManipulationDevice)); 22internal static readonly RoutedEvent ManipulationDeltaEvent = EventManager.RegisterRoutedEvent("ManipulationDelta", RoutingStrategy.Bubble, typeof(EventHandler<ManipulationDeltaEventArgs>), typeof(ManipulationDevice)); 23internal static readonly RoutedEvent ManipulationInertiaStartingEvent = EventManager.RegisterRoutedEvent("ManipulationInertiaStarting", RoutingStrategy.Bubble, typeof(EventHandler<ManipulationInertiaStartingEventArgs>), typeof(ManipulationDevice)); 24internal static readonly RoutedEvent ManipulationBoundaryFeedbackEvent = EventManager.RegisterRoutedEvent("ManipulationBoundaryFeedback", RoutingStrategy.Bubble, typeof(EventHandler<ManipulationBoundaryFeedbackEventArgs>), typeof(ManipulationDevice)); 25internal static readonly RoutedEvent ManipulationCompletedEvent = EventManager.RegisterRoutedEvent("ManipulationCompleted", RoutingStrategy.Bubble, typeof(EventHandler<ManipulationCompletedEventArgs>), typeof(ManipulationDevice)); 39private static ManipulationDevice GetActiveManipulationDevice(UIElement element) 43ManipulationDevice device = ManipulationDevice.GetManipulationDevice(element); 61ManipulationDevice device = ManipulationDevice.GetManipulationDevice(element); 83ManipulationDevice device = ManipulationDevice.GetManipulationDevice(element); 102ManipulationDevice device = GetActiveManipulationDevice(element); 122ManipulationDevice device = ManipulationDevice.GetManipulationDevice(element); 143ManipulationDevice device = GetActiveManipulationDevice(element); 164ManipulationDevice device = ManipulationDevice.GetManipulationDevice(element); 182ManipulationDevice device = GetActiveManipulationDevice(element); 202ManipulationDevice device = ManipulationDevice.GetManipulationDevice(element); 226ManipulationDevice device = ManipulationDevice.AddManipulationDevice(element); 249ManipulationDevice device = ManipulationDevice.GetManipulationDevice(element); 270ManipulationDevice device = GetActiveManipulationDevice(element);
System\Windows\Input\ManipulationBoundaryFeedbackEventArgs.cs (2)
19ManipulationDevice manipulationDevice, 87_manipulators = ((ManipulationDevice)Device).GetManipulatorsReadOnly();
System\Windows\Input\ManipulationCompletedEventArgs.cs (2)
19ManipulationDevice manipulationDevice, 137_manipulators = ((ManipulationDevice)Device).GetManipulatorsReadOnly();
System\Windows\Input\ManipulationDeltaEventArgs.cs (2)
19ManipulationDevice manipulationDevice, 211_manipulators = ((ManipulationDevice)Device).GetManipulatorsReadOnly();
System\Windows\Input\ManipulationDevice.cs (7)
73internal static ManipulationDevice AddManipulationDevice(UIElement element) 79ManipulationDevice device = GetManipulationDevice(element); 84_manipulationDevices = new Dictionary<UIElement, ManipulationDevice>(2); 102internal static ManipulationDevice GetManipulationDevice(UIElement element) 108ManipulationDevice device; 252ManipulationDevice device = _manipulationDevices[element]; 524private static Dictionary<UIElement, ManipulationDevice> _manipulationDevices;
System\Windows\Input\ManipulationInertiaStartingEventArgs.cs (2)
22ManipulationDevice manipulationDevice, 182_manipulators = ((ManipulationDevice)Device).GetManipulatorsReadOnly();
System\Windows\Input\ManipulationLogic.cs (2)
24internal ManipulationLogic(ManipulationDevice manipulationDevice) 698private ManipulationDevice _manipulationDevice;
System\Windows\Input\ManipulationStartedEventArgs.cs (2)
19ManipulationDevice manipulationDevice, 115_manipulators = ((ManipulationDevice)Device).GetManipulatorsReadOnly();
System\Windows\Input\ManipulationStartingEventArgs.cs (2)
17ManipulationDevice manipulationDevice, 99_manipulators = ((ManipulationDevice)Device).GetManipulatorsReadOnly();