13 references to DeviceInfo
PresentationCore (13)
System\Windows\Input\Stylus\Pointer\PointerFlickEngine.cs (6)
487double deviceSizeX = _stylusDevice.PointerTabletDevice.DeviceInfo.DeviceRect.right - _stylusDevice.PointerTabletDevice.DeviceInfo.DeviceRect.left; 488double deviceSizeY = _stylusDevice.PointerTabletDevice.DeviceInfo.DeviceRect.top - _stylusDevice.PointerTabletDevice.DeviceInfo.DeviceRect.bottom; 491double tabletSizeX = _stylusDevice.PointerTabletDevice.DeviceInfo.SizeInfo.TabletSize.Width; 492double tabletSizeY = _stylusDevice.PointerTabletDevice.DeviceInfo.SizeInfo.TabletSize.Height;
System\Windows\Input\Stylus\Pointer\PointerStylusDevice.cs (1)
127foreach (var prop in _tabletDevice.DeviceInfo.StylusPointProperties)
System\Windows\InterOp\HwndPointerInputProvider.cs (6)
137int pointerPropertyCount = tabletDevice.DeviceInfo.SupportedPointerProperties.Length; 149tabletDevice.DeviceInfo.SupportedPointerProperties, 156int numButtons = tabletDevice.DeviceInfo.SupportedPointerProperties.Length - tabletDevice.DeviceInfo.SupportedButtonPropertyIndex; 183for (int k = tabletDevice.DeviceInfo.SupportedButtonPropertyIndex; k < pointerPropertyCount; k++) 185int mask = rawPointerData[j + k] << (k - tabletDevice.DeviceInfo.SupportedButtonPropertyIndex);