UWP 命令栏重叠
UWP CommandBar overlapping
我在 UWP 应用程序中遇到命令栏问题(见下图)
在这里你可以看到 CompactMode 中的 CommandBar 和带有文本 "Title" 的 TextBlock。当我现在展开(单击三个点)CommandBar 时,TextBlock 消失,如下所示:
如何防止 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>
在 CommandBar 控件的 Content 中,您可以添加一个 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>
这两种情况都会解决你的问题。
我在 UWP 应用程序中遇到命令栏问题(见下图)
当我关闭展开的 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>
在 CommandBar 控件的 Content 中,您可以添加一个 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>
这两种情况都会解决你的问题。