谁在 WP8.1 WINRT 中为Mode="Minimized"
设置BottomAppBar
?
答案 0 :(得分:28)
ApplicationBar 的Mode="Minimized"
相当于 BottomAppBar
ClosedDisplayMode="Minimal"
<Page.BottomAppBar>
<CommandBar ClosedDisplayMode="Minimal">
...
</CommandBar>
</Page.BottomAppBar>
答案 1 :(得分:6)
该属性位于Commandbar,ClosedDisplayMode:
<Page.BottomAppBar>
<CommandBar ClosedDisplayMode="Minimal">
<CommandBar.PrimaryCommands>
</CommandBar.PrimaryCommands>
<CommandBar.SecondaryCommands>
</CommandBar.SecondaryCommands>
</CommandBar>
</Page.BottomAppBar>