我正在开发Windows 10 UWP应用程序。我只需要为Windows 10移动应用程序折叠系统托盘。
答案 0 :(得分:2)
最后我得到了答案
var statusbar = "Windows.UI.ViewManagement.StatusBar";
if (ApiInformation.IsTypePresent(statusbar))
{
//await Windows.UI.ViewManagement.StatusBar.GetForCurrentView().ShowAsync();
await Windows.UI.ViewManagement.StatusBar.GetForCurrentView().HideAsync();
}
注意:在使用上述代码之前,请不要忘记添加windows phone extention
更多信息: https://msdn.microsoft.com/en-us/library/windows/apps/Dn609832.aspx
答案 1 :(得分:0)
我找到了可以帮助你的方法!你应该在公共MainPage()类
中使用此代码ApplicationView.GetForCurrentView().TryEnterFullScreenMode();
此代码隐藏状态栏并在手机中全屏显示应用