检索 Windows 设备的 DPI
Posted
技术标签:
【中文标题】检索 Windows 设备的 DPI【英文标题】:Retrieving Windows device's DPI 【发布时间】:2015-11-14 12:24:31 【问题描述】:UWP 中是否有用于检索设备 dpi 的 API?在 android 中有 getDisplayMetrics().density;
方法。 UWP 中是否有等价物?
看起来我正在寻找以前在电话上可用的 RawDPI
或 ScaleFactor
。
【问题讨论】:
我在 MSDN 上找到了一组很棒的文章。 msdn.microsoft.com/en-us/library/windows/desktop/… DpiScaling UWP 示例显示了如何执行此操作。具体来说,RawPixelsPerViewPixel
.
【参考方案1】:
经过一番挖掘,找到了here:
Windows.Graphics.Display.DisplayInformation
许多可用的好东西包括原始 dpi 和比例因子。
【讨论】:
【参考方案2】:除了正确答案。您可以获得的实际屏幕尺寸远不止这些。
DisplayInformation.GetForCurrentView().DiagonalSizeInInches;
【讨论】:
【参考方案3】:添加示例如何在 C++/winrt 中获取 DisplayInformation
#include "winrt/Windows.Graphics.Display.h"
auto displayInfo = Windows::Graphics::Display::DisplayInformation::GetForCurrentView();
【讨论】:
以上是关于检索 Windows 设备的 DPI的主要内容,如果未能解决你的问题,请参考以下文章
使用 DeviceWatcher 监控 USB 驱动器并检索设备信息?
通过 Windows 的 API 检索 PCI 坐标(用户模式)