Windows 8.1. Windows 10 tryEnterFullScreenMode. Windows 8.1 . , :
var view = ApplicationView.GetForCurrentView();
TypeInfo t = typeof(ApplicationView).GetTypeInfo();
var tryEnterFullScreenMode = t.GetDeclaredMethod("TryEnterFullScreenMode");
if (tryEnterFullScreenMode != null)
{
tryEnterFullScreenMode.Invoke(view, null);
}
Windows 10 , . , API Windows.Foundation.Metadata.ApiInformation. , , ( ), . , , :
bool isEnterFullScreenPresent = Windows.Foundation.Metadata.ApiInformation.IsMethodPresent("Windows.UI.ViewManagement.ApplicationView", "TryEnterFullScreenMode");
if (isEnterFullScreenPresent)
{
ApplicationView.GetForCurrentView().TryEnterFullScreenMode();
}
API . Windows (UWP) MSDN.