现在我正在使用 VS2015 和 C# 和 XAML 制作 Windows Phone 8.1 应用程序。并想了解 Commandbar。
我只使用辅助命令栏。所以,我想压缩主要的空间,当命令栏弹出时。但我无法解决这个问题。
现在我的代码在这里。
<Page.BottomAppBar>
<CommandBar ClosedDisplayMode="Minimal" Background="Tomato">
<CommandBar.SecondaryCommands>
<AppBarButton x:Name="appBarAboutButton"
Label="about"
Click="appBarAboutButton_Click"/>
</CommandBar.SecondaryCommands >
</CommandBar>
</Page.BottomAppBar>
请告诉我如何解决这个问题。