UWP CommandBar重叠

时间:2015-12-11 12:32:07

标签: xaml uwp overlapping commandbar

我在UWP Apps中遇到CommandBar问题(见下图)

enter image description here 在这里,您可以看到CompactMode中的 CommandBar 和带有Text" Title"的 TextBlock 。当我现在展开(点击三个点) CommandBar 时,TextBlock消失,如下所示:

enter image description here 如何防止 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>

1 个答案:

答案 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>

它将在两种情况下解决您的问题。