1 instantiation of ManipulationDevice
PresentationCore (1)
System\Windows\Input\ManipulationDevice.cs (1)
96device = new ManipulationDevice(element);
48 references to ManipulationDevice
PresentationCore (48)
System\Windows\Input\Manipulation.cs (27)
23internal static readonly RoutedEvent ManipulationStartingEvent = EventManager.RegisterRoutedEvent("ManipulationStarting", RoutingStrategy.Bubble, typeof(EventHandler<ManipulationStartingEventArgs>), typeof(ManipulationDevice)); 24internal static readonly RoutedEvent ManipulationStartedEvent = EventManager.RegisterRoutedEvent("ManipulationStarted", RoutingStrategy.Bubble, typeof(EventHandler<ManipulationStartedEventArgs>), typeof(ManipulationDevice)); 25internal static readonly RoutedEvent ManipulationDeltaEvent = EventManager.RegisterRoutedEvent("ManipulationDelta", RoutingStrategy.Bubble, typeof(EventHandler<ManipulationDeltaEventArgs>), typeof(ManipulationDevice)); 26internal static readonly RoutedEvent ManipulationInertiaStartingEvent = EventManager.RegisterRoutedEvent("ManipulationInertiaStarting", RoutingStrategy.Bubble, typeof(EventHandler<ManipulationInertiaStartingEventArgs>), typeof(ManipulationDevice)); 27internal static readonly RoutedEvent ManipulationBoundaryFeedbackEvent = EventManager.RegisterRoutedEvent("ManipulationBoundaryFeedback", RoutingStrategy.Bubble, typeof(EventHandler<ManipulationBoundaryFeedbackEventArgs>), typeof(ManipulationDevice)); 28internal static readonly RoutedEvent ManipulationCompletedEvent = EventManager.RegisterRoutedEvent("ManipulationCompleted", RoutingStrategy.Bubble, typeof(EventHandler<ManipulationCompletedEventArgs>), typeof(ManipulationDevice)); 42private static ManipulationDevice GetActiveManipulationDevice(UIElement element) 46ManipulationDevice device = ManipulationDevice.GetManipulationDevice(element); 64ManipulationDevice device = ManipulationDevice.GetManipulationDevice(element); 86ManipulationDevice device = ManipulationDevice.GetManipulationDevice(element); 105ManipulationDevice device = GetActiveManipulationDevice(element); 125ManipulationDevice device = ManipulationDevice.GetManipulationDevice(element); 146ManipulationDevice device = GetActiveManipulationDevice(element); 167ManipulationDevice device = ManipulationDevice.GetManipulationDevice(element); 185ManipulationDevice device = GetActiveManipulationDevice(element); 205ManipulationDevice device = ManipulationDevice.GetManipulationDevice(element); 229ManipulationDevice device = ManipulationDevice.AddManipulationDevice(element); 252ManipulationDevice device = ManipulationDevice.GetManipulationDevice(element); 273ManipulationDevice device = GetActiveManipulationDevice(element);
System\Windows\Input\ManipulationBoundaryFeedbackEventArgs.cs (2)
26ManipulationDevice manipulationDevice, 94_manipulators = ((ManipulationDevice)Device).GetManipulatorsReadOnly();
System\Windows\Input\ManipulationCompletedEventArgs.cs (2)
26ManipulationDevice manipulationDevice, 144_manipulators = ((ManipulationDevice)Device).GetManipulatorsReadOnly();
System\Windows\Input\ManipulationDeltaEventArgs.cs (2)
26ManipulationDevice manipulationDevice, 218_manipulators = ((ManipulationDevice)Device).GetManipulatorsReadOnly();
System\Windows\Input\ManipulationDevice.cs (7)
82internal static ManipulationDevice AddManipulationDevice(UIElement element) 88ManipulationDevice device = GetManipulationDevice(element); 93_manipulationDevices = new Dictionary<UIElement, ManipulationDevice>(2); 111internal static ManipulationDevice GetManipulationDevice(UIElement element) 117ManipulationDevice device; 261ManipulationDevice device = _manipulationDevices[element]; 533private static Dictionary<UIElement, ManipulationDevice> _manipulationDevices;
System\Windows\Input\ManipulationInertiaStartingEventArgs.cs (2)
29ManipulationDevice manipulationDevice, 189_manipulators = ((ManipulationDevice)Device).GetManipulatorsReadOnly();
System\Windows\Input\ManipulationLogic.cs (2)
31internal ManipulationLogic(ManipulationDevice manipulationDevice) 705private ManipulationDevice _manipulationDevice;
System\Windows\Input\ManipulationStartedEventArgs.cs (2)
26ManipulationDevice manipulationDevice, 122_manipulators = ((ManipulationDevice)Device).GetManipulatorsReadOnly();
System\Windows\Input\ManipulationStartingEventArgs.cs (2)
23ManipulationDevice manipulationDevice, 105_manipulators = ((ManipulationDevice)Device).GetManipulatorsReadOnly();