0
由於將Windows 10週年紀念版與SDK一起應用,其中一個命令欄具有不同的行爲。它用來顯示三個AppButton。現在,只有兩個會顯示。在最左邊似乎有一個空的按鈕。Windows 10 UWP命令欄
這裏是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>
如何消除對留下的空白?
你在PC或手機上測試了你的代碼嗎?您的圖像看起來像是在xaml設計器中,但我無法在設計器或PC或移動設備上重現您的問題,我的操作系統bulid:14393. –
這是一個Windows應用商店應用(64位),我在PC上運行它。在Debug或Release模式下運行時,我看到了左側的空白。我也嘗試清理我的解決方案。我很高興你試圖重現它,但不能。這意味着我可能會採取一些措施來解決這個問題。我將嘗試在沒有命令欄的情況下進行構建,然後放回。謝謝! – James