Windows Phone 8.1 AppBar占用了不必要的空间

时间:2015-02-24 19:51:08

标签: xaml windows-phone-8.1

我的应用中有一个AppBar,只有一个辅助命令。

<Page.BottomAppBar>
    <CommandBar>
        <CommandBar.SecondaryCommands>
            <AppBarButton Label="refresh" Click="Refresh_WebView"/>
        </CommandBar.SecondaryCommands>
    </CommandBar>
</Page.BottomAppBar>

然而,它仍然留下足够的AppBar“可见”(你不必将它拉起来看它)为剩余的PrimaryCommands留出空间。这浪费了很多空间。商店在下载部分做了同样的事情,但AppBar没有占用那个不必要的空间。我怎么能指明我不想要我的?

1 个答案:

答案 0 :(得分:0)

这应该可以解决问题。

<Page.BottomAppBar>
    <CommandBar ClosedDisplayMode="Minimal">
        <CommandBar.SecondaryCommands>
            <AppBarButton Label="refresh" Click="Refresh_WebView"/>
        </CommandBar.SecondaryCommands>
    </CommandBar>
</Page.BottomAppBar>

在我想出你想要的东西之后编辑了答案!这应该有用。