我有一组水平对齐的图像。包含ListBox
完全填充父控件。现在应该通过调整父控件的大小来调整图像的大小。我认为ListBoxItem
dos 不会调整自己的高度以适应ListBox
.
我的 ListBox 代码
<ListBox ItemsSource="{Binding Path=Pages}"
VerticalContentAlignment="Stretch"
KeyboardNavigation.IsTabStop="False"
Height="Auto" MinHeight="120">
<ListBox.ItemTemplate>
<DataTemplate>
<Image Source="{Binding Path=PageThumbnail}" Stretch="Uniform/>
</DataTemplate>
</ListBox.ItemTemplate>
<ListBox.ItemsPanel>
<ItemsPanelTemplate>
<StackPanel Orientation="Horizontal"/>
</ItemsPanelTemplate>
</ListBox.ItemsPanel>
</ListBox>