加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 综合聚焦 > 服务器 > Windows > 正文

windows-10 – 隐藏UWP中的状态栏

发布时间:2020-12-14 04:11:20 所属栏目:Windows 来源:网络整理
导读:我使用下面的代码来隐藏UWP中的状态栏.当我在计算机中以开发模式运行应用程序时,状态栏不会显示在 Windows Phone中.我在Windows应用商店中部署了应用,在下载应用后,我看到状态栏出现在我的应用中. 这是我的代码: var isAvailable = Windows.Foundation.Meta
我使用下面的代码来隐藏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商店中有我的应用程序App link的链接,但是当我在Windows商店中搜索确切的关键词时,我的应用程序没有显示在Windows商店中,但点击链接会在窗口商店中显示我的应用程序.

谢谢!

检查合同,而不是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();
    }
}

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读