我在我的项目 (UWP) 中使用命令栏,但是,我意识到命令栏中默认有一个省略号按钮。有什么方法可以隐藏/删除它吗?
这是我的代码:
<Page.BottomAppBar>
<CommandBar
Background="{StaticResource CitiKioskBackgroundBrush}"
IsOpen="True"
IsSticky="True"
Name="appBarName"
Visibility="Collapsed"
>
<CommandBar.PrimaryCommands>
<AppBarButton Name="SettingAppBarButton"
Icon="Setting"
Label="Settings"
Foreground="White" Click="SettingAppBarButton_Click"/>
</CommandBar.PrimaryCommands>
</CommandBar>
</Page.BottomAppBar>