1

我想为我的 javascript 应用程序创建一个应用程序栏,因为我们知道按下右键时我们会看到应用程序栏,但我希望它默认显示,无需右键单击。这是我的html代码

 <div id="appbar" data-win-control="WinJS.UI.AppBar">
    <!-- Commands for show/hide -->
    <button data-win-control="WinJS.UI.AppBarCommand" 
            data-win-options="{id:'showHideButton', label:'Show/Hide Picker', icon:'view'}">
    </button>
</div>

谢谢你

4

1 回答 1

0

在您的应用启动代码中,获取 appbar 元素并在其上调用“show()”

// This is essentially what you need to do inside your app startup code
// After all the elements are loaded (After the WinJS.UI.processAll() I believe)
document.getElementById('appbar').show();
于 2012-11-02T06:33:58.660 回答