如何设置ItemTemplate
的{{1}}以填充可用空间?
我有ListBox
有自定义ListBox
,我需要将方向设置为水平。这不是一个问题,它适用于此;
ItemTemplate
问题出现在ItemsSource中有一个项目(或者不足以填满屏幕)时,会有很多空白。我希望<ListBox.ItemsPanel>
<ItemsPanelTemplate>
<VirtualizingStackPanel Orientation="Horizontal"/>
</ItemsPanelTemplate>
</ListBox.ItemsPanel>
中的任何内容填补空白区域。我该怎么做?