1 instantiation of ManipulationDevice
PresentationCore (1)
Core\CSharp\System\Windows\Input\ManipulationDevice.cs (1)
113device = new ManipulationDevice(element);
48 references to ManipulationDevice
PresentationCore (48)
Core\CSharp\System\Windows\Input\Manipulation.cs (27)
22internal static readonly RoutedEvent ManipulationStartingEvent = EventManager.RegisterRoutedEvent("ManipulationStarting", RoutingStrategy.Bubble, typeof(EventHandler<ManipulationStartingEventArgs>), typeof(ManipulationDevice)); 23internal static readonly RoutedEvent ManipulationStartedEvent = EventManager.RegisterRoutedEvent("ManipulationStarted", RoutingStrategy.Bubble, typeof(EventHandler<ManipulationStartedEventArgs>), typeof(ManipulationDevice)); 24internal static readonly RoutedEvent ManipulationDeltaEvent = EventManager.RegisterRoutedEvent("ManipulationDelta", RoutingStrategy.Bubble, typeof(EventHandler<ManipulationDeltaEventArgs>), typeof(ManipulationDevice)); 25internal static readonly RoutedEvent ManipulationInertiaStartingEvent = EventManager.RegisterRoutedEvent("ManipulationInertiaStarting", RoutingStrategy.Bubble, typeof(EventHandler<ManipulationInertiaStartingEventArgs>), typeof(ManipulationDevice)); 26internal static readonly RoutedEvent ManipulationBoundaryFeedbackEvent = EventManager.RegisterRoutedEvent("ManipulationBoundaryFeedback", RoutingStrategy.Bubble, typeof(EventHandler<ManipulationBoundaryFeedbackEventArgs>), typeof(ManipulationDevice)); 27internal static readonly RoutedEvent ManipulationCompletedEvent = EventManager.RegisterRoutedEvent("ManipulationCompleted", RoutingStrategy.Bubble, typeof(EventHandler<ManipulationCompletedEventArgs>), typeof(ManipulationDevice)); 44private static ManipulationDevice GetActiveManipulationDevice(UIElement element) 48ManipulationDevice device = ManipulationDevice.GetManipulationDevice(element); 69ManipulationDevice device = ManipulationDevice.GetManipulationDevice(element); 94ManipulationDevice device = ManipulationDevice.GetManipulationDevice(element); 116ManipulationDevice device = GetActiveManipulationDevice(element); 139ManipulationDevice device = ManipulationDevice.GetManipulationDevice(element); 163ManipulationDevice device = GetActiveManipulationDevice(element); 187ManipulationDevice device = ManipulationDevice.GetManipulationDevice(element); 208ManipulationDevice device = GetActiveManipulationDevice(element); 231ManipulationDevice device = ManipulationDevice.GetManipulationDevice(element); 261ManipulationDevice device = ManipulationDevice.AddManipulationDevice(element); 290ManipulationDevice device = ManipulationDevice.GetManipulationDevice(element); 317ManipulationDevice device = GetActiveManipulationDevice(element);
Core\CSharp\System\Windows\Input\ManipulationBoundaryFeedbackEventArgs.cs (2)
25ManipulationDevice manipulationDevice, 99_manipulators = ((ManipulationDevice)Device).GetManipulatorsReadOnly();
Core\CSharp\System\Windows\Input\ManipulationCompletedEventArgs.cs (2)
25ManipulationDevice manipulationDevice, 155_manipulators = ((ManipulationDevice)Device).GetManipulatorsReadOnly();
Core\CSharp\System\Windows\Input\ManipulationDeltaEventArgs.cs (2)
25ManipulationDevice manipulationDevice, 235_manipulators = ((ManipulationDevice)Device).GetManipulatorsReadOnly();
Core\CSharp\System\Windows\Input\ManipulationDevice.cs (7)
99internal static ManipulationDevice AddManipulationDevice(UIElement element) 105ManipulationDevice device = GetManipulationDevice(element); 110_manipulationDevices = new Dictionary<UIElement, ManipulationDevice>(2); 128internal static ManipulationDevice GetManipulationDevice(UIElement element) 134ManipulationDevice device; 296ManipulationDevice device = _manipulationDevices[element]; 620private static Dictionary<UIElement, ManipulationDevice> _manipulationDevices;
Core\CSharp\System\Windows\Input\ManipulationInertiaStartingEventArgs.cs (2)
28ManipulationDevice manipulationDevice, 197_manipulators = ((ManipulationDevice)Device).GetManipulatorsReadOnly();
Core\CSharp\System\Windows\Input\ManipulationLogic.cs (2)
30internal ManipulationLogic(ManipulationDevice manipulationDevice) 754private ManipulationDevice _manipulationDevice;
Core\CSharp\System\Windows\Input\ManipulationStartedEventArgs.cs (2)
25ManipulationDevice manipulationDevice, 127_manipulators = ((ManipulationDevice)Device).GetManipulatorsReadOnly();
Core\CSharp\System\Windows\Input\ManipulationStartingEventArgs.cs (2)
22ManipulationDevice manipulationDevice, 104_manipulators = ((ManipulationDevice)Device).GetManipulatorsReadOnly();