Who to set Mode="Minimized"
in WP8.1 WINRT for a BottomAppBar
?
Asked
Active
Viewed 2,625 times
2 Answers
28
The equivalent of Mode="Minimized"
for ApplicationBar is ClosedDisplayMode="Minimal"
for BottomAppBar
<Page.BottomAppBar>
<CommandBar ClosedDisplayMode="Minimal">
...
</CommandBar>
</Page.BottomAppBar>

Ouadie
- 13,005
- 4
- 52
- 62
6
The property is on the Commandbar, ClosedDisplayMode:
<Page.BottomAppBar>
<CommandBar ClosedDisplayMode="Minimal">
<CommandBar.PrimaryCommands>
</CommandBar.PrimaryCommands>
<CommandBar.SecondaryCommands>
</CommandBar.SecondaryCommands>
</CommandBar>
</Page.BottomAppBar>

Boris
- 73
- 7