自定义列表框的Wordwrap以编程方式添加

时间:2012-05-22 20:22:18

标签: c# wpf listbox

我有一个自定义ListBoxItem,我试图以编程方式添加到ListBox,我希望项目的内容包装。

这是自定义ListBoxItem:

class PresetListBoxItem : ListBoxItem
{
    public uint[] preset;

    public PresetListBoxItem(uint[] preset = null, string content = "N/A")
        : base()
    {
        this.preset = preset;
        this.Content = content;
    }
}

和XAML:

<ListBox Name="sortingBox" Margin="5,5,0,5" Width="150" MaxWidth="150" ScrollViewer.HorizontalScrollBarVisibility="Disabled" HorizontalContentAlignment="Stretch">
    <ListBox.ItemTemplate>
        <DataTemplate>
            <Border BorderBrush="Black" BorderThickness="2" CornerRadius="3" Margin="3">
                <TextBlock Text="{Binding Path=Text}" TextWrapping="WrapWithOverflow" />
            </Border>
        </DataTemplate>
    </ListBox.ItemTemplate>
</ListBox>

执行添加的代码:

PresetListBoxItem item = new PresetListBoxItem();
item.preset = new uint[] { };
item.Content = "This is a test of an extended line of text.";
sortingBox.Items.Add(item);

当我运行代码时,该项目会被添加到框中,但边框根本不显示,并且不会包裹这些行。

我已经看了SO和Google的答案,我已经使用了ListBoxes和ListViews,但似乎没有任何效果。

1 个答案:

答案 0 :(得分:0)

ListBoxItem只是内容分别为容器的容器。如果您想使用自己的ListBoxItem覆盖容器的模板而不是项目。然后,对于TextBlock中的正确绑定,您必须绑定到PresetListBoxItem的Content属性。

<ListBox.ItemContainerStyle>
    <Style TargetType="ListBoxItem">
        <Setter Property="Template">
            <Setter.Value>
                <ControlTemplate TargetType="local:PresetListBoxItem">
                    <Border BorderBrush="Black" BorderThickness="2" CornerRadius="3" Margin="3">
                        <TextBlock Text="{Binding Path=Content, RelativeSource={RelativeSource AncestorType=local:PresetListBoxItem}}"
                                   TextWrapping="WrapWithOverflow" />
                    </Border>
                </ControlTemplate>
            </Setter.Value>
        </Setter>
    </Style>
</ListBox.ItemContainerStyle>

但我认为这不是最好的方式。为什么你来自ListBoxItem?如果你不这样做,你的XAML会立刻好起来。

item.Text = "This is a test of an extended line of text.";

class PresetListBoxItem
{
    public uint[] preset;
    public string Text { get; set; }

    public PresetListBoxItem(uint[] preset = null, string content = "N/A")
      : base()
    {
        this.preset = preset;
        this.Text = content;
    }
}