Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to specify Minimized Mode for BottomAppBar WP8.1

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

like image 394
Ouadie Avatar asked Jul 07 '14 16:07

Ouadie


2 Answers

The equivalent of Mode="Minimized" for ApplicationBar is ClosedDisplayMode="Minimal" for BottomAppBar

<Page.BottomAppBar>
        <CommandBar ClosedDisplayMode="Minimal">
         ...
        </CommandBar>
</Page.BottomAppBar>
like image 119
Ouadie Avatar answered Sep 19 '22 13:09

Ouadie


The property is on the Commandbar, ClosedDisplayMode:

    <Page.BottomAppBar>
        <CommandBar ClosedDisplayMode="Minimal">
            <CommandBar.PrimaryCommands>
            </CommandBar.PrimaryCommands>
            <CommandBar.SecondaryCommands>
            </CommandBar.SecondaryCommands>
        </CommandBar>
    </Page.BottomAppBar>
like image 43
Boris Avatar answered Sep 20 '22 13:09

Boris