WPF Paragraph获取或修改文本内容

Posted 天马3798

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了WPF Paragraph获取或修改文本内容相关的知识,希望对你有一定的参考价值。

一、说明

Paragraph继承自Block,Block继承自TextElement,在TextElement中

        //
        // 摘要:
        //     获取表示元素中内容末尾的 System.Windows.Documents.TextPointer。
        //
        // 返回结果:
        //     表示 System.Windows.Documents.TextElement 中内容末尾的 System.Windows.Documents.TextPointer。
        public TextPointer ContentEnd { get; }
        //
        // 摘要:
        //     获取表示元素中内容开头的 System.Windows.Documents.TextPointer。
        //
        // 返回结果:
        //     表示 System.Windows.Documents.TextElement 中内容开头的 System.Windows.Documents.TextPointerContext。
        public TextPointer ContentStart { get; }

通过获取ContentStart点和ContentEnd点之间的内容,获取段落内容:TextRand.Text

    //
    // 摘要:
    //     表示两个 System.Windows.Documents.TextPointer 位置之间的所选内容。
    public class TextRange : ITextRange
    {
        // 参数:
        //   position1:
        //     标记用于组成新 System.Windows.Documents.TextRange 的所选内容的一端的固定定位点位置。
        //
        //   position2:
        //     标记用于组成新 System.Windows.Documents.TextRange 的所选内容的另一端的可移动位置。
        public TextRange(TextPointer position1, TextPointer position2);

实例代码:

//获取段落部分的内容
Paragraph p = doc.FindName("one") as Paragraph;
TextRange range = new TextRange(p.ContentStart, p.ContentEnd);
string str = range.Text;
MessageBox.Show(str);
//修改段落内容
p.Inlines.Clear();
p.Inlines.Add(new Run("天涯共此时"));

 

以上是关于WPF Paragraph获取或修改文本内容的主要内容,如果未能解决你的问题,请参考以下文章

WPF文本框,无法编辑文本......即将放弃

从C#中的WPF组合框或文本框获取文本

JavaScript 学习-36.jQuery 获取和修改HTML

WPF TextElement内容模型简介(转)

在WPF的RICHTEXTBOX中 我用 new 出来的Paragraph 两段的间距很大 ,求解。。。。

从WordPress小部件获取数据以修改帖子内容