3

我可以使用答案中的代码操作/隐藏桌面 UWP 应用程序中的标题栏:

ApplicationViewTitleBar formattableTitleBar = ApplicationView.GetForCurrentView().TitleBar;
formattableTitleBar.ButtonBackgroundColor   = Colors.Transparent;
CoreApplicationViewTitleBar coreTitleBar    = CoreApplication.GetCurrentView().TitleBar;
coreTitleBar.ExtendViewIntoTitleBar         = true;

但它不适用于 Hololens 环境。我已经搜索了文档,但似乎找不到解决方法。这可能吗?

4

1 回答 1

1

我认为您需要使用StatusBar类。参考这篇文章,我相信下面的代码应该隐藏了StatusBar。

if (Windows.Foundation.Metadata.ApiInformation.IsTypePresent("Windows.UI.ViewManagement.StatusBar"))
{
    StatusBar.GetForCurrentView().HideAsync();
}
于 2016-11-02T06:22:11.603 回答