WPF ListBox ItemTemplate:如何使内容填充可用空间?

时间:2010-11-25 06:57:53

标签: wpf listbox itemtemplate

我已将ListBox.ItemTemplate设置为以下内容

<ListBox.ItemTemplate>
    <DataTemplate>
        <StackPanel Margin="10">
            <TextBlock Text="{Binding Args}" />
            <ProgressBar Value="{Binding Progress}" Height="10" />
            <TextBlock Text="{Binding Status}" />
            <TextBlock Text="{Binding Result}" />
        </StackPanel>
    </DataTemplate>
</ListBox.ItemTemplate>

结果是

如何让StackPanel填充ListBox的整个宽度?

1 个答案:

答案 0 :(得分:5)

离开我的头顶,将列表框的HorizontalContentAlignment属性设置为Stretch。