Screen size can be found using
Application.Current.Host.Content.ActualWidth;
and
Application.Current.Host.Content.ActualHeight;
On my Windows 8s phone, they return 480x800, which is the correct screen size.
Please note that the return values refer to portrait mode; if you use landscape, you will have to invert them.
source
share