Reputation: 567
I am working on a Windows Phone app and I have encountered an "issue". I have a BottomAppBar
control on my View and some AppBarButton
controls inside the command bar. I would like to "hide" the BottomAppBar
in such way that only those three dots on the right side are displayed and the user would have to slide the BottomAppBar
control up to see its contents.
I have tried to:
IsOpen
property of the CommandBar to False - didn't work AppBarButton
controls visibility to Collapsed
- showed only the empty BottomAppBarI am not very good at explaining myself, therefore I will add a couple of images from another app on my phone, just to show exactly what I would like to obtain:
Upvotes: 1
Views: 916
Reputation: 2918
you can set the ClosedDisplayMode=Minimal
<Page.BottomAppBar>
<CommandBar ClosedDisplayMode="Minimal">
<CommandBar.SecondaryCommands>
<AppBarButton IsCompact="True" Label="About"/>
</CommandBar.SecondaryCommands>
</CommandBar>
</Page.BottomAppBar>
Upvotes: 7