gpt4 book ai didi

javascript - 如何在 UWP JavaScript 应用程序中显示状态栏?

转载 作者:行者123 更新时间:2023-12-03 04:17:11 25 4
gpt4 key购买 nike

用 JavaScript 编写应用程序时如何在移动设备上显示 Windows 10 系统状态栏? Windows.​UI.​View​Management.StatusBar 类在移动设备上不可用,Visual Studio 2017 是这样说的。

最佳答案

您需要添加对 UWP 移动扩展的引用,因为状态栏仅存在于移动设备上。

enter image description here

转到项目 > 添加引用。

选中“UWP 的 Windows Mobile 扩展”,然后按“确定”。

警告:您需要检查 API 是否存在,因为如果不存在,应用程序可能会崩溃。像这样:

if (Windows.Foundation.Metadata.ApiInformation.isTypePresent("Windows.UI.ViewManagement.StatusBar")) {

let statusbar = Windows.UI.ViewManagement.StatusBar.getForCurrentView();
statusbar.showAsync();

}

关于javascript - 如何在 UWP JavaScript 应用程序中显示状态栏?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44098367/

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