实施并打开汉堡菜单窗格时,底部(设置)被 BottomAppBar 覆盖/隐藏。
问问题
127 次
2 回答
1
解决方案:只需在页面中添加另一个网格行并在那里实现一个 CommandBar:
<Grid>
<Grid.RowDefinitions>
<RowDefinition />
<RowDefinition />
<RowDefinition Height="Auto"/>
</Grid.RowDefinitions>
<... Grid.Row="0"/>
<... Grid.Row="1"/>
<CommandBar Grid.Row="2"/>
</Grid>
于 2016-02-29T14:12:20.253 回答
0
我很高兴地告诉你,演示如何实现底部应用栏的模板 10 示例项目已经存在,你可以在 GitHub 上查看它。
https://github.com/Windows-XAML/Template10/tree/master/Samples/BottomAppBar
于 2016-02-29T23:21:41.710 回答