如何在初始加载中显示AppBarButton标签
本文关键字:显示 AppBarButton 标签 加载 | 更新日期: 2023-09-27 18:02:15
在下面的代码中,应用程序栏没有AppBarButton Label文本。文本仅在单击汉堡包按钮并展开栏时显示。我如何使文本显示随着图标最初?
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;
命令栏有一个属性IsOpen
。将其设置为True。那么CommandBar
总是开着的
<CommandBar IsOpen="True" Name="xCommand" IsSticky="True" IsHitTestVisible="False">
<AppBarButton Icon="Add" Label="Add New Info"/>
</CommandBar>
这是我的XAML。命令栏始终保持打开状态