gpt4 book ai didi

c# - 使用拆分器使 ItemsControl 子项可调整大小

转载 作者:太空狗 更新时间:2023-10-29 23:40:35 25 4
gpt4 key购买 nike

我想将小部件插入到我的 ItemsControl 中并使它们可以调整大小。我如何实现这一目标?

这是我的 XAML:

<ItemsControl ItemsSource="{Binding TestForList, Mode=OneWay}">

<ItemsControl.ItemsPanel>
<ItemsPanelTemplate>
<StackPanel Orientation="Horizontal"
VerticalAlignment="Stretch"
HorizontalAlignment="Stretch" />
</ItemsPanelTemplate>
</ItemsControl.ItemsPanel>

<ItemsControl.ItemTemplate>
<DataTemplate>
<Border Margin="5"
BorderThickness="1"
BorderBrush="Black">
<TextBlock FontSize="100" Text="{Binding}" />
</Border>
</DataTemplate>
</ItemsControl.ItemTemplate>

</ItemsControl>

绑定(bind)到:

public List<string> TestForList
{
get
{
return new List<string> { "A", "B", "C" };
}
}

我想以某种方式在项目之间添加拆分器,以便可以调整它们的大小。有什么内置的东西可以实现这一点吗?

enter image description here

最佳答案

您应该能够添加装饰器。我会做一个 sample ,但我不想。看看这篇文章this be the article

关于c# - 使用拆分器使 ItemsControl 子项可调整大小,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11074675/

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