gpt4 book ai didi

uwp - 如何在 Hololens UWP App 中隐藏标题栏

转载 作者:行者123 更新时间:2023-12-04 14:15:49 25 4
gpt4 key购买 nike

我能够使用 this 中的代码操作/隐藏桌面 UWP 应用程序中的标题栏回答:

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

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

最佳答案

我认为您需要使用 StatusBar类(class)。引用此 article ,我相信下面的代码应该隐藏 StatusBar。

if (Windows.Foundation.Metadata.ApiInformation.IsTypePresent("Windows.UI.ViewManagement.StatusBar"))
{
StatusBar.GetForCurrentView().HideAsync();
}

关于uwp - 如何在 Hololens UWP App 中隐藏标题栏,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39929033/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com