Wer kann Mode="Minimized"
in WP8.1 festlegen WINRT für einen BottomAppBar
?So geben Sie den minimierten Modus für BottomAppBar an WP8.1
13
A
Antwort
28
Das Äquivalent für Mode="Minimized"
ApplicationBar ist ClosedDisplayMode="Minimal"
für BottomAppBar
<Page.BottomAppBar>
<CommandBar ClosedDisplayMode="Minimal">
...
</CommandBar>
</Page.BottomAppBar>
6
Die Eigenschaft auf der Commandbar, ClosedDisplayMode ist:
<Page.BottomAppBar>
<CommandBar ClosedDisplayMode="Minimal">
<CommandBar.PrimaryCommands>
</CommandBar.PrimaryCommands>
<CommandBar.SecondaryCommands>
</CommandBar.SecondaryCommands>
</CommandBar>
</Page.BottomAppBar>