我有一个使用 UniformGrid 作为 ItemsPanelTemplate 的列表框。这是一张照片列表。我希望照片在网格的每个单元格的中心水平居中,但似乎无论我做什么,图像都与每个单元格的左侧对齐。这是我当前的 XAML:
<Border BorderThickness="2" HorizontalAlignment="Stretch" VerticalAlignment="Stretch" DockPanel.Dock="Right">
<ListBox Name="PhotosListBox" HorizontalAlignment="Stretch" VerticalAlignment="Stretch" ScrollViewer.HorizontalScrollBarVisibility="Disabled" ScrollViewer.VerticalScrollBarVisibility="Disabled">
<ListBox.ItemsPanel>
<ItemsPanelTemplate>
<UniformGrid IsItemsHost="True" HorizontalAlignment="Center"/>
</ItemsPanelTemplate>
</ListBox.ItemsPanel>
<ListBox.ItemTemplate>
<DataTemplate>
<Image Source="{Binding Path=photo}" HorizontalAlignment="Center"/>
</DataTemplate>
</ListBox.ItemTemplate>
</ListBox>
</Border>
如您所见,我将 DataTemplate 中的 Image 控件设置为 HorizontalAlignment="Center",我认为可以这样做,但它不起作用。
我究竟做错了什么?