You can check if it is turned on in full screen via ApplicationView.IsFullScreen:
using Windows.UI.ViewManagement
if (ApplicationView.GetForCurrentView().IsFullScreen)
{
}
else
{
}
and exact dimensions through Window.Bounds:
var width = Window.Current.Bounds.Width;
var height = Window.Current.Bounds.Height;
source
share