c# – 检测Windows 8.1商店应用程序是否在SplittView或FullView中
作者:互联网
有没有办法判断Windows 8.1存储(XAML / C#)是否在SplittView中?
或者有没有办法获得当前显示器的全宽?
解决方法:
您可以通过ApplicationView.IsFullScreen检查它是否全屏:
using Windows.UI.ViewManagement
if (ApplicationView.GetForCurrentView().IsFullScreen)
{
// ...
}
else
{
}
通过Window.Bounds确切的尺寸:
var width = Window.Current.Bounds.Width;
var height = Window.Current.Bounds.Height;
标签:c,xaml,windows-runtime,winrt-xaml,windows-8-1 来源: https://codeday.me/bug/20190629/1322615.html