I am using a commandbar in my project (UWP), however, I realized there is an ellipsis button in the commandbar by default. Is there any way where by I can hide/remove it?
Here's my code:
<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>