Now I'm making Windows Phone 8.1 app with VS2015 and C# and XAML. And Want to know about Commandbar.
I only use Secondary commandbar. So, I want to compress primary's space, When Commandbar pop up. but I can't solve this problem.
Ideal Image, commandbar's height short
now my code is here.
<Page.BottomAppBar>
<CommandBar ClosedDisplayMode="Minimal" Background="Tomato">
<CommandBar.SecondaryCommands>
<AppBarButton x:Name="appBarAboutButton"
Label="about"
Click="appBarAboutButton_Click"/>
</CommandBar.SecondaryCommands >
</CommandBar>
</Page.BottomAppBar>
please tell me how to solve this problem.