我在UWP Apps中遇到CommandBar问题(见下图)
在这里,您可以看到CompactMode中的 CommandBar 和带有Text" Title"的 TextBlock 。当我现在展开(点击三个点) CommandBar 时,TextBlock消失,如下所示:
当我关闭展开的 CommandBar 时,它会从图片1返回到状态,显示 TextBlock 。
守则:
<Grid x:Name="cmdBarDesktop" Grid.Row="0">
<CommandBar ClosedDisplayMode="Compact" IsOpen="True" IsSticky="True">
<CommandBar.PrimaryCommands>
<AppBarButton x:Name="AppBarListDesktop" Icon="List" Label="Listenform" Grid.Column="1" Click="AppBarList_Click" />
<AppBarButton x:Uid="AppBarAdd" Icon="Add" Label="Hinzufügen" Grid.Column="3" Click="AppBarAdd_Click" />
</CommandBar.PrimaryCommands>
</CommandBar>
</Grid>
<Grid x:Name="titleGrid" VerticalAlignment="Center" Grid.Row="0">
<Grid.ColumnDefinitions>
<ColumnDefinition Width="10" />
<ColumnDefinition Width="Auto" />
</Grid.ColumnDefinitions>
<TextBlock Text="Hausaufgaben" Style="{StaticResource TitleTextBlockStyle}" Grid.Column="1" VerticalAlignment="Center" />
</Grid>
答案 0 :(得分:7)
在CommandBar控件的内容内,您可以添加TextBlock。
<CommandBar ClosedDisplayMode="Compact">
<CommandBar.Content>
<TextBlock Text="Title" />
</CommandBar.Content>
<CommandBar.PrimaryCommands>
<AppBarButton Icon="List"
Label="Listenform" />
<AppBarButton Icon="Add"
Label="Hinzufügen" />
</CommandBar.PrimaryCommands>
</CommandBar>
它将在两种情况下解决您的问题。