当前位置:  开发笔记 > 开发工具 > 正文

在UWP中隐藏状态栏

如何解决《在UWP中隐藏状态栏》经验,为你挑选了1个好方法。

我使用下面的代码来隐藏UWP中的状态栏.当我在计算机中以开发模式运行应用程序时,状态栏不会显示在Windows Phone中.我在Windows应用商店中部署了应用,在下载应用后,我看到状态栏出现在我的应用中.

这是我的代码:

var isAvailable = Windows.Foundation.Metadata.ApiInformation.IsTypePresent(typeof(StatusBar).ToString());
   if (isAvailable)
       hideBar();

async void hideBar()
{
   StatusBar bar = Windows.UI.ViewManagement.StatusBar.GetForCurrentView();
   await bar.HideAsync();
}

问题是,为什么上面的代码不适用于Windows商店?此外,我有链接到我的应用程序链接在Windows商店,但当我在Windows商店中搜索确切的关键词时,我的应用程序没有显示在Windows商店中,但点击链接将在窗口商店中显示我的应用程序.

谢谢!



1> Herdo..:

检查Contract,而不是类型StatusBar对我来说很好.

private async Task InitializeUi()
{
    // If we have a phone contract, hide the status bar
    if (ApiInformation.IsApiContractPresent("Windows.Phone.PhoneContract", 1, 0))
    {
        var statusBar = StatusBar.GetForCurrentView();
        await statusBar.HideAsync();
    }
}

推荐阅读
贾志军
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有