现在我正在使用VS2015以及C#和XAML制作Windows Phone 8.1应用程序。 并想了解Commandbar。
我只使用辅助命令栏。所以,当我弹出Commandbar时,我想压缩primary的空间。但我无法解决这个问题。
Ideal Image, commandbar's height short
现在我的代码在这里。
<Page.BottomAppBar>
<CommandBar ClosedDisplayMode="Minimal" Background="Tomato">
<CommandBar.SecondaryCommands>
<AppBarButton x:Name="appBarAboutButton"
Label="about"
Click="appBarAboutButton_Click"/>
</CommandBar.SecondaryCommands >
</CommandBar>
</Page.BottomAppBar>
请告诉我如何解决这个问题。
答案 0 :(得分:1)
目前这是命令栏的预期行为,并且没有解决方法。但是在命令栏中有一个名为Content的属性。你可以去看它是否符合你的需要。
CommandBar有3个属性可用于添加内容和命令: 内容,PrimaryCommands和SecondaryCommands。您可以添加任何XAML 通过设置Content属性将元素添加到内容区域。
点击此链接了解详情https://msdn.microsoft.com/en-in/library/windows/apps/windows.ui.xaml.controls.commandbar.aspx