13

Who to set Mode="Minimized" in WP8.1 WINRT for a BottomAppBar?

Ouadie
  • 13,005
  • 4
  • 52
  • 62

2 Answers2

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