Kto może ustawić Mode="Minimized"
w WP8.1 WINRT dla BottomAppBar
?Jak określić tryb minimalny dla BottomAppBar WP8.1
13
A
Odpowiedz
28
Odpowiednik Mode="Minimized"
do ApplicationBar jest ClosedDisplayMode="Minimal"
do BottomAppBar
<Page.BottomAppBar>
<CommandBar ClosedDisplayMode="Minimal">
...
</CommandBar>
</Page.BottomAppBar>
6
Obiekt jest na CommandBar, ClosedDisplayMode:
<Page.BottomAppBar>
<CommandBar ClosedDisplayMode="Minimal">
<CommandBar.PrimaryCommands>
</CommandBar.PrimaryCommands>
<CommandBar.SecondaryCommands>
</CommandBar.SecondaryCommands>
</CommandBar>
</Page.BottomAppBar>