实施时,汉堡菜单窗格打开,BottomAppBar覆盖/隐藏底部(设置)。
答案 0 :(得分:1)
解决方案: 只需在页面中添加另一个网格行,然后在那里实现一个CommandBar:
<Grid>
<Grid.RowDefinitions>
<RowDefinition />
<RowDefinition />
<RowDefinition Height="Auto"/>
</Grid.RowDefinitions>
<... Grid.Row="0"/>
<... Grid.Row="1"/>
<CommandBar Grid.Row="2"/>
</Grid>
答案 1 :(得分:0)
我很高兴地告诉您,演示如何实施Bottom App Bar的Template 10示例项目已经存在,您可以在GitHub上查看它。
https://github.com/Windows-XAML/Template10/tree/master/Samples/BottomAppBar