2014-07-07 11 views

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> 
Verwandte Themen