我有一个创建图像列表的应用程序。由于它显示在一行中,而且我觉得将它们放在两列中会更有效,因此我尝试删除 Stackpanel:
<ListBox
ItemsSource="{Binding Images}"
SelectionChanged="ListBox_SelectionChanged">
<ListBox.ItemTemplate>
<DataTemplate>
<Image Source="{Binding SmallLogoURL}" Height="75" Width="75" Margin="0,0,10,0" />
</DataTemplate>
</ListBox.ItemTemplate>
</ListBox>
但我仍然在单列列表中得到它:-/