我正在ItemsControl中显示List<string>
集合。问题是列表项(例如TheyAreAllNextToEachOther
)之间没有空格。
如何在项目之间创建一些间距?
<ItemsControl Grid.Column="2"
Grid.ColumnSpan="2"
ItemsSource="{Binding Path=ShowTimes}"
BorderThickness="0">
<ItemsControl.ItemsPanel>
<ItemsPanelTemplate>
<WrapPanel IsItemsHost="True" Orientation="Horizontal"/>
</ItemsPanelTemplate>
</ItemsControl.ItemsPanel>
</ItemsControl>
我在ItemsControl中显示List
我将在其中设置边距的地方添加一个ItemTemplate
将样式提供给ItemsControl容器(默认ContentPresenter