3 writes to SizeInfo
PresentationCore (3)
System\Windows\Input\Stylus\Pointer\PointerTabletDeviceInfo.cs (1)
307SizeInfo = new TabletDeviceSizeInfo(
System\Windows\Input\Stylus\Wisp\PenThreadWorker.cs (1)
873tabletInfo.SizeInfo = new TabletDeviceSizeInfo(new Size(iTabletWidth, iTabletHeight),
System\Windows\Input\Stylus\Wisp\WispTabletDevice.cs (1)
235_tabletInfo.SizeInfo = _penThread.WorkerGetUpdatedSizes(_tabletInfo.PimcTablet.Value);
8 references to SizeInfo
PresentationCore (8)
System\Windows\Input\Stylus\Common\TabletDeviceBase.cs (6)
219return new Matrix(_tabletInfo.SizeInfo.ScreenSize.Width / _tabletInfo.SizeInfo.TabletSize.Width, 0, 2200, _tabletInfo.SizeInfo.ScreenSize.Height / _tabletInfo.SizeInfo.TabletSize.Height, 233return _tabletInfo.SizeInfo.TabletSize; 246return _tabletInfo.SizeInfo.ScreenSize;
System\Windows\Input\Stylus\Pointer\PointerFlickEngine.cs (2)
511double tabletSizeX = _stylusDevice.PointerTabletDevice.DeviceInfo.SizeInfo.TabletSize.Width; 512double tabletSizeY = _stylusDevice.PointerTabletDevice.DeviceInfo.SizeInfo.TabletSize.Height;