1
當執行和漢堡菜單窗格打開時,底部部分(設置)由BottomAppBar覆蓋/隱藏。BottomAppBar覆蓋漢堡菜單底部
當執行和漢堡菜單窗格打開時,底部部分(設置)由BottomAppBar覆蓋/隱藏。BottomAppBar覆蓋漢堡菜單底部
解決方案: 只需添加另一個網格行到你的頁面,並實現一個CommandBar有:
<Grid>
<Grid.RowDefinitions>
<RowDefinition />
<RowDefinition />
<RowDefinition Height="Auto"/>
</Grid.RowDefinitions>
<... Grid.Row="0"/>
<... Grid.Row="1"/>
<CommandBar Grid.Row="2"/>
</Grid>
我很高興地告訴你,模板10示例項目演示如何實現底部應用欄已經存在,您可以在GitHub上查看它。
https://github.com/Windows-XAML/Template10/tree/master/Samples/BottomAppBar
所以這個問題看起來已關閉,則應當標註答案。 –