In Windows Phone 8 I can get the screen resolution using DeviceExtendedProperties or Application.Current.Host.Content.ScaleFactor. None of this wor
DeviceExtendedProperties
Application.Current.Host.Content.ScaleFactor
You can get everything you need about the resolution using Window and DisplayInformation
var bounds = Window.Current.Bounds; var displayInfo = DisplayInformation.GetForCurrentView();