3 writes to SizeInfo
PresentationCore (3)
System\Windows\Input\Stylus\Pointer\PointerTabletDeviceInfo.cs (1)
303SizeInfo = new TabletDeviceSizeInfo(
System\Windows\Input\Stylus\Wisp\PenThreadWorker.cs (1)
861tabletInfo.SizeInfo = new TabletDeviceSizeInfo(new Size(iTabletWidth, iTabletHeight),
System\Windows\Input\Stylus\Wisp\WispTabletDevice.cs (1)
226_tabletInfo.SizeInfo = _penThread.WorkerGetUpdatedSizes(_tabletInfo.PimcTablet);
8 references to SizeInfo
PresentationCore (8)
System\Windows\Input\Stylus\Common\TabletDeviceBase.cs (6)
212return new Matrix(_tabletInfo.SizeInfo.ScreenSize.Width / _tabletInfo.SizeInfo.TabletSize.Width, 0, 2130, _tabletInfo.SizeInfo.ScreenSize.Height / _tabletInfo.SizeInfo.TabletSize.Height, 226return _tabletInfo.SizeInfo.TabletSize; 239return _tabletInfo.SizeInfo.ScreenSize;
System\Windows\Input\Stylus\Pointer\PointerFlickEngine.cs (2)
491double tabletSizeX = _stylusDevice.PointerTabletDevice.DeviceInfo.SizeInfo.TabletSize.Width; 492double tabletSizeY = _stylusDevice.PointerTabletDevice.DeviceInfo.SizeInfo.TabletSize.Height;