13 references to DeviceInfo
PresentationCore (13)
System\Windows\Input\Stylus\Pointer\PointerFlickEngine.cs (6)
507double deviceSizeX = _stylusDevice.PointerTabletDevice.DeviceInfo.DeviceRect.right - _stylusDevice.PointerTabletDevice.DeviceInfo.DeviceRect.left; 508double deviceSizeY = _stylusDevice.PointerTabletDevice.DeviceInfo.DeviceRect.top - _stylusDevice.PointerTabletDevice.DeviceInfo.DeviceRect.bottom; 511double tabletSizeX = _stylusDevice.PointerTabletDevice.DeviceInfo.SizeInfo.TabletSize.Width; 512double tabletSizeY = _stylusDevice.PointerTabletDevice.DeviceInfo.SizeInfo.TabletSize.Height;
System\Windows\Input\Stylus\Pointer\PointerStylusDevice.cs (1)
135foreach (var prop in _tabletDevice.DeviceInfo.StylusPointProperties)
System\Windows\InterOp\HwndPointerInputProvider.cs (6)
146int pointerPropertyCount = tabletDevice.DeviceInfo.SupportedPointerProperties.Length; 158tabletDevice.DeviceInfo.SupportedPointerProperties, 165int numButtons = tabletDevice.DeviceInfo.SupportedPointerProperties.Length - tabletDevice.DeviceInfo.SupportedButtonPropertyIndex; 192for (int k = tabletDevice.DeviceInfo.SupportedButtonPropertyIndex; k < pointerPropertyCount; k++) 194int mask = rawPointerData[j + k] << (k - tabletDevice.DeviceInfo.SupportedButtonPropertyIndex);