How to specify Minimized Mode for BottomAppBar WP8.1
appbar, windows-phone-8.1, winrt-xaml
Solution
The equivalent of `Mode="Minimized"` for ApplicationBar is `ClosedDisplayMode="Minimal"` for BottomAppBar
<Page.BottomAppBar>
<CommandBar ClosedDisplayMode="Minimal">
...
</CommandBar>
</Page.BottomAppBar>
Problem
Who to set `Mode="Minimized"` in WP8.1 WINRT for a `BottomAppBar`?