Getting the current screen resolution in Windows 8 using C# is really straight forward:
var bounds = Window.Current.Bounds;
doube height = bounds.Height;
double width = bounds.Width;
// xamlgeek
Getting the current screen resolution in Windows 8 using C# is really straight forward:
var bounds = Window.Current.Bounds;
doube height = bounds.Height;
double width = bounds.Width;
// xamlgeek
Leave a Reply