1

在以下代码中,应用栏呈现时没有 AppBarButton 标签文本。仅当单击汉堡按钮并展开栏时才会显示文本。最初如何使文本与图标一起显示?

        CommandBar cb2 = new CommandBar();
        AppBarButton b3 = new AppBarButton();
        b3.Icon = new SymbolIcon(Symbol.Help);
        b3.HorizontalAlignment = HorizontalAlignment.Left;
        b3.Label = "HELP";

        cb2.PrimaryCommands.Add(b3);


        BottomAppBar = cb2;
4

1 回答 1

0

命令栏有一个属性IsOpen。将其设置为 True。然后CommandBar总是开放的。

更新

<CommandBar IsOpen="True" Name="xCommand" IsSticky="True" IsHitTestVisible="False">
    <AppBarButton Icon="Add" Label="Add New Info"/>
</CommandBar>

这是我的 XAML。命令栏始终保持打开状态。

于 2016-08-11T21:07:11.187 回答