如何折叠Windows 10 Phone UWP中的系统托盘

时间:2015-09-21 08:48:06

标签: windows-10 uwp windows-10-mobile

我正在开发Windows 10 UWP应用程序。我只需要为Windows 10移动应用程序折叠系统托盘。

2 个答案:

答案 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();

此代码隐藏状态栏并在手机中全屏显示应用