Windows 10 UWP命令栏

时间:2016-08-06 12:51:08

标签: c# xaml uwp

自从应用Windows 10 Anniversary Edition和SDK以来,其中一个命令栏具有不同的行为。它曾用于显示三个AppButton。现在,只会显示两个。最左边似乎有一个空按钮。

Command Bar

这是XAML:

<CommandBar x:Name="VideoGroupCommands"
            RelativePanel.AlignBottomWithPanel="True"
            RelativePanel.AlignLeftWithPanel="True"
            RelativePanel.AlignRightWithPanel="True"
            Background="{StaticResource LightBeigeBrush}"
            IsEnabled="{x:Bind ViewModel.IsVideoGroupSelected,Mode=TwoWay}">
    <AppBarButton Icon="Edit"
                  x:Uid="Edit"
                  Label=""
                  Command="{x:Bind ViewModel.EditVideoGroupCommand}"/>
    <AppBarButton Icon="Delete"
                  x:Uid="Delete"
                  Label=""
                  Command="{x:Bind ViewModel.DeleteGroupCommand}"/>
    <AppBarButton Icon="MoveToFolder" x:Uid="Merge" Label=""/>
</CommandBar>

如何消除左边的差距?

1 个答案:

答案 0 :(得分:0)

我相信更新会略微改变命令栏的显示机制。为了解决这个问题,我将控件所在的网格列从FIXED宽度更改为AUTO宽度。现在,控件显示左侧没有间隙的所有三个按钮。柱子稍宽,但我可以吸收它。

在上图中,命令栏正在切出显示屏的第三个按钮。