gpt4 book ai didi

listview - 如何拉伸(stretch) ListView 项目宽度以填充父容器?

转载 作者:行者123 更新时间:2023-12-03 04:02:06 51 4
gpt4 key购买 nike

如何拉伸(stretch) ListView 项目的宽度以填充父容器?

默认行为似乎是将所有内容压缩得尽可能窄。

最佳答案

问题不在于子项,而在于 itemcontainer,它的 Horizo​​ntalAlignment=Left 隐藏在框架代码深处的某处。只有解决此问题后,您才会获得默认情况下期望的行为。 Before and after screenshots showing both the problem and the solution

<ListView.ItemContainerStyle>
<Style TargetType="ListViewItem">
<Setter Property="HorizontalContentAlignment" Value="Stretch" />
</Style>
</ListView.ItemContainerStyle>

<GroupStyle.HeaderContainerStyle >
<Style TargetType="ListViewHeaderItem">
<Setter Property="HorizontalContentAlignment" Value="Stretch" />
</Style>
</GroupStyle.HeaderContainerStyle>

关于listview - 如何拉伸(stretch) ListView 项目宽度以填充父容器?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24406307/

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