我如何将段落数据绑定到TextBlock?

时间:2009-01-27 15:24:57

标签: wpf data-binding xaml textblock paragraph

我如何获取Paragraph对象并将它们数据绑定到TextBlock以便在DataTemplate中使用? 普通绑定什么也不做,只是Paragraph对象的ToString()

InLines属性允许我手动添加组成Paragraph的TextRun列表,但不能绑定,我可以使用基于绑定的解决方案。

编辑问题,专注于我真正需要做的事情。

5 个答案:

答案 0 :(得分:3)

这是使用嵌套ItemsControl的示例。不幸的是,它会为每个内联创建一个TextBlock,而不是将整个Paragraph放入一个TextBlock:

<Grid xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
      xmlns:sys="clr-namespace:System;assembly=mscorlib"
      xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
    <Grid.Resources>
        <FlowDocument x:Key="document">
            <Paragraph><Run xml:space="preserve">This is the first paragraph.  </Run><Run>The quick brown fox jumps over the lazy dog.</Run></Paragraph>
            <Paragraph><Run xml:space="preserve">This is the second paragraph.  </Run><Run>Two driven jocks help fax my big quiz.</Run></Paragraph>
            <Paragraph><Run xml:space="preserve">This is the third paragraph.  </Run><Run>Sphinx of black quartz, judge my vow!</Run></Paragraph>
        </FlowDocument>
        <DataTemplate DataType="{x:Type Paragraph}">
            <ItemsControl ItemsSource="{Binding Inlines}" IsHitTestVisible="False">
                <ItemsControl.ItemsPanel>
                    <ItemsPanelTemplate>
                        <WrapPanel/>
                    </ItemsPanelTemplate>
                </ItemsControl.ItemsPanel>
            </ItemsControl>
        </DataTemplate>
    </Grid.Resources>
    <ListBox ItemsSource="{Binding Blocks, Source={StaticResource document}}"/>
</Grid>

如果你想要每个元素一个段落,你应该按照建议做,并使用只读的RichTextBox,或do what this person did and derive from TextBlock,以便可以绑定Inlines属性。

答案 1 :(得分:2)

我有类似的需求并按照Andy的回答解决了这个问题......我创建了一个BindableTextBlock:

class BindableTextBlock : TextBlock
{
    public Inline BoundInline
    {
        get { return (Inline)GetValue(BoundInlineProperty); }
        set { SetValue(BoundInlineProperty, value); }
    }

    public static readonly DependencyProperty BoundInlineProperty =
        DependencyProperty.Register("BoundInline", typeof(Inline), typeof(BindableTextBlock),
            new UIPropertyMetadata((PropertyChangedCallback)((d, e) => { ((BindableTextBlock)d).Inlines.Clear(); ((BindableTextBlock)d).Inlines.Add(e.NewValue as Inline); })));
}

然后在我的XAML中,我可以绑定到BoundInline依赖项属性:

    <DataTemplate x:Key="TempTemplate">
        <t:BindableTextBlock TextWrapping="Wrap" BoundInline="{Binding Path=TextInlines}" Grid.Column="1" Grid.Row="1" Grid.ColumnSpan="2" />
    </DataTemplate>

这样做的一个缺点是你只能将单个根内联绑定到文本块,这对我的情况很好,因为我的内容都包含在顶级跨度中。

答案 2 :(得分:1)

我不确定你是否可以将Paragraph直接绑定到TextBlock的内联。但是,我能够找到允许您绑定到Run的Text属性的类BindableRun。那对你有用吗?

编辑:修改我的回答以反映编辑过的问题。

答案 3 :(得分:0)

您可以尝试为Paragraph对象创建自己的DataTemplate,这些对象将每个对象包装在自己的FlowDocument中,然后通过RichTextBox(当然只读)显示

答案 4 :(得分:0)

我遇到了几乎相同的问题并以类似于joshperry的方式回答它,对TextBlock进行子类化以使内联成为Bindable。另外,我在一个xaml标记字符串和一个InlineCollection之间编写了一个转换器。

How to bind a TextBlock to a resource containing formatted text?