Get the size of the screen in a windows store app.
var bounds = Window.Current.Bounds;
double height = bounds.Height;
double width = bounds.Width;
Get the size of the screen in a windows store app.
var bounds = Window.Current.Bounds;
double height = bounds.Height;
double width = bounds.Width;