在以下代码中,应用栏的呈现没有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;
答案 0 :(得分:0)
命令栏有一个属性IsOpen
。将其设置为True。然后CommandBar
始终打开。
<强>更新强>
<CommandBar IsOpen="True" Name="xCommand" IsSticky="True" IsHitTestVisible="False">
<AppBarButton Icon="Add" Label="Add New Info"/>
</CommandBar>
这是我的XAML。命令Bar Stays始终打开。