在 C# 中存取 Windows 顯示設定
Windows 7 及更高版本提供控制面板設置,讓使用者可以調整文字和 UI 元素大小。 C# 開發人員經常需要檢索此設定以實現動態應用程式行為。
實用的解決方案
直接使用 graphics.DpiX
和 DeviceCap.LOGPIXELSX
會意外傳回固定值 (96 DPI),無論實際縮放為何。 為了準確地確定縮放因子,需要採用不同的方法:
<code class="language-csharp">[DllImport("gdi32.dll")] static extern int GetDeviceCaps(IntPtr hdc, int nIndex); public enum DeviceCap { VERTRES = 10, DESKTOPVERTRES = 117 } private float GetScalingFactor() { using (Graphics g = Graphics.FromHwnd(IntPtr.Zero)) { IntPtr desktop = g.GetHdc(); int logicalScreenHeight = GetDeviceCaps(desktop, (int)DeviceCap.VERTRES); int physicalScreenHeight = GetDeviceCaps(desktop, (int)DeviceCap.DESKTOPVERTRES); g.ReleaseHdc(desktop); return (float)physicalScreenHeight / logicalScreenHeight; // e.g., 1.25 for 125% scaling } }</code>
此程式碼片段利用 GetDeviceCaps
來比較邏輯和實體螢幕高度,提供精確的縮放係數。 例如,結果 1.25 表示縮放等級為 125%。
以上是如何在 C# 中以程式方式擷取 Windows 顯示縮放因子?的詳細內容。更多資訊請關注PHP中文網其他相關文章!