5

我在我的项目 (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>
4

2 回答 2

11

您可以使用该OverflowButtonVisibility属性:

<CommandBar OverflowButtonVisibility="Collapsed"></CommandBar>

于 2017-10-05T18:24:01.063 回答
1

由于没有禁用 的属性MoreButtonCommandBar您必须复制CommandBar模板,从中删除MoreButton元素,然后将模板应用于您的CommandBar实例。最终,您必须修改模板的其他部分以使其正常运行。

于 2017-10-03T08:31:41.127 回答