Get device screen resolution in Windows Phone 8.1 XAML

后端 未结 2 1829
情深已故
情深已故 2020-12-09 09:10

In Windows Phone 8 I can get the screen resolution using DeviceExtendedProperties or Application.Current.Host.Content.ScaleFactor. None of this wor

2条回答
  •  失恋的感觉
    2020-12-09 10:02

    You can get everything you need about the resolution using Window and DisplayInformation

    var bounds = Window.Current.Bounds;
    var displayInfo = DisplayInformation.GetForCurrentView();
    

提交回复
热议问题