在Windows Phone 8.1 XAML中获取设备屏幕分辨率

时间:2014-06-10 13:50:53

标签: c# xaml windows-phone-8 windows-phone-8.1

在Windows Phone 8中,我可以使用DeviceExtendedPropertiesApplication.Current.Host.Content.ScaleFactor获取屏幕分辨率。这些都不适用于Windows Phone 8.1 XAML。

我找不到如何在Windows Phone 8.1 XAML中获得屏幕分辨率的方法,有办法吗?

2 个答案:

答案 0 :(得分:31)

使用WinRT API时,您可以使用Windows.UI.Xaml.Window.Current.Bounds(高度和宽度)检索屏幕分辨率。

您需要将这些值乘以比例因子以获得真实的分辨率。您可以通过调用DisplayInformation.GetForCurrentView().RawPixelsPerViewPixel

来检索比例因子
var scaleFactor = DisplayInformation.GetForCurrentView().RawPixelsPerViewPixel;

Debug.WriteLine("The current resolution is {0}x{1}", Window.Current.Bounds.Width * scaleFactor, Window.Current.Bounds.Height * scaleFactor);

答案 1 :(得分:10)

您可以使用WindowDisplayInformation

获取有关解决方案的所有信息
var bounds = Window.Current.Bounds;
var displayInfo = DisplayInformation.GetForCurrentView();