gpt4 book ai didi

wpf - WPF ItemsControl中的项目间距

转载 作者:行者123 更新时间:2023-12-03 15:06:00 25 4
gpt4 key购买 nike

我在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>

最佳答案

我会在您设置边距的地方添加一个ItemTemplate

<ItemsControl.ItemTemplate>
<DataTemplate>
<TextBlock Margin="3,3,3,3" Text="{Binding}"/>
</DataTemplate>
</ItemsControl.ItemTemplate>

关于wpf - WPF ItemsControl中的项目间距,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20971831/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com