我试图在我的Windows Phone Universal应用程序中添加App Bar。这是我在项目中编写的代码:
<Page.BottomAppBar>
<CommandBar>
<AppBarButton Icon="Accept" Label="AppBarButton"/>
<AppBarButton Icon="Cancel" Label="AppBarButton"/>
</CommandBar>
</Page.BottomAppBar>
应用栏在我的Windows Phone和Windows Phone模拟器中正常显示。但是我遇到的问题是当我将Windows版本部署到本地计算机和模拟器时,没有应用程序栏可见。
我也尝试过TopAppBar。结果是一样的。有没有办法添加适用于Windows Phone和本地计算机的App Bar?
提前致谢。 :)
答案 0 :(得分:4)
在Windows应用商店应用中,默认情况下会隐藏 BottomAppBar 和 TopAppBar 。当您Right-Click your mouse
或Swipe from bottom or top edge on your screen
时。将出现BottomAppBar或TopAppBar。
答案 1 :(得分:2)
您可以将IsOpen属性设置为True,以在页面加载时显示应用栏。
<Page.BottomAppBar>
<CommandBar IsOpen="True">
<AppBarButton Icon="Accept" Label="AppBarButton"/>
<AppBarButton Icon="Cancel" Label="AppBarButton"/>
</CommandBar>
</Page.BottomAppBar>