TextFlow元素在WPF中是否有效

时间:2009-07-02 17:40:58

标签: wpf flowdocument

由于某种原因,我无法在WPF中使用TextFlow元素。这个元素/控件是否可用?

我正在使用VS 2008.

3 个答案:

答案 0 :(得分:2)

如果要避免使用FlowDocument的默认镶边,可以自己指定查看器:

<FlowDocumentScrollViewer>
    <FlowDocument>
        <Paragraph>
            <Run>Hello</Run>
            <Run Background="Yellow">World</Run>
        </Paragraph>
    </FlowDocument>
</FlowDocumentScrollViewer>

答案 1 :(得分:1)

没有TextFlow元素。 你在寻找FlowDocument吗?

<ContentControl>
    <FlowDocument>
        <Paragraph>
            <Run>Hello</Run>
            <Run Background="Yellow"> World</Run>
        </Paragraph>
    </FlowDocument>
</ContentControl>

答案 2 :(得分:0)

您还可以使用TextBlock:

<TextBlock><Run>Hello</Run><Run Background="Yellow">World</Run></TextBlock>