How to get the resolution of screen? For a WinRT app? September 15, 2023 by Tarik How about this? var bounds = Window.Current.Bounds; double height = bounds.Height; double width = bounds.Width;