Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个问题,在 Metro 应用程序中,该应用程序如何检测安装它的显示器分辨率。请帮忙。
安装时,您无法检测到任何东西。
可以在应用运行时检测分辨率,这一点很清楚。安装应用程序后可以更改分辨率。
我使用以下代码:
Size renderSize = Window.Current.Content.RenderSize; var resolution = renderSize;
确保 Window.Current.Content 不为空。