我的系统上安装了 Win 8.1 系统。我曾经DPI
在我的 WPF 应用程序(Win 7)中根据以下内容进行计算:
Matrix m = PresentationSource.FromVisual(Application.Current.MainWindow).CompositionTarget.TransformToDevice;
double dx = m.M11;
double dy = m.M22;
使用 Win 8.1,我可以灵活地为不同的显示器设置不同的 DPI。如果我需要使用 WPF 找出每台显示器的 DPI 是多少,如何实现?