gpt4 book ai didi

listbox - WP7 ListBox Items来填充ListBox的宽度

转载 作者:行者123 更新时间:2023-12-04 16:30:24 24 4
gpt4 key购买 nike

我试图让 ListBox 中的项目跨越 ListBox 的整个宽度。我发现了几篇处理 Horizo​​ntalContentAlignment="Stretch"的帖子,但我无法让它在我的 WP7 应用程序中工作。这是我的列表框:

<ListBox Margin="8" HorizontalContentAlignment="Stretch" ItemsSource="{Binding Collection}" >
<ListBox.ItemTemplate>
<DataTemplate>
<Border BorderBrush="Black" CornerRadius="3" Background="#FFE88D34"
BorderThickness="1" HorizontalAlignment="Stretch" >
<Grid Background="Transparent" HorizontalAlignment="Stretch" >
<Grid.ColumnDefinitions>
<ColumnDefinition Width="*" />
</Grid.ColumnDefinitions>
<TextBlock
Grid.Column="0" HorizontalAlignment="Stretch"
Margin="2"
FontSize="10"
Text="{Binding Property1}"/>
</Grid>
</Border>
</DataTemplate>
</ListBox.ItemTemplate>
<ListBox.ItemContainerStyle>
<Style TargetType="ListBoxItem">
<Setter Property="HorizontalContentAlignment" Value="Stretch" />
</Style>
</ListBox.ItemContainerStyle>
</ListBox>

我试图让橙色边框跨越列表框的整个宽度,以便所有列表项的大小都相同,而不仅仅是 TextBlock 中文本的大小。

最佳答案

使用以下静态资源作为 Listbox 的 ItemContainerStyle:

ItemContainerStyle="{StaticResource ListboxStretchStyle}" 

<Application.Resources>
<Style TargetType="ListBoxItem" x:Key="ListboxStretchStyle">
<Setter Property="Template">
<Setter.Value>
<ControlTemplate>
<ContentPresenter HorizontalAlignment="Stretch" VerticalAlignment="Stretch"/>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
</Application.Resources>

关于listbox - WP7 ListBox Items来填充ListBox的宽度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3561651/

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