WPF ItemsControl中的项目间距

问题描述 投票:15回答:2

我正在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 集合。问题在于列表项(例如,它们是AreAreAllNextToEachOther)之间没有空格。如何创建一些间距...

wpf xaml .net-4.0 itemscontrol
2个回答
3
投票

我将在其中设置边距的地方添加一个ItemTemplate


54
投票

将样式提供给ItemsControl容器(默认ContentPresenter

© www.soinside.com 2019 - 2024. All rights reserved.