Windows.UI.Core.CoreWindow.Bounds
December 15, 2023 ยท View on GitHub
-description
Gets a Rect value that contains the origin, height, and width of the client area of the window, in device-independent pixels (DIPs).
-property-value
A value that reports the origin, height, and width of the client area of the application window.
-remarks
The origin of the Rect is relative to the system window that includes both the client and non-client areas.
To convert from DIPs to physical pixels (and back), use these equations (where DPI is the dots per inch value for the screen):
- DIP value = (physical pixel x 96) / DPI
- physical pixel value = (DIP x DPI) / 96