Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何替换 WPf 富文本框中的字符?
WPF RichTextBox 没有任何直接的属性或方法可以将其内容转换为可用于操作的字符串。你可以试试这样的
TextRange textRange = new TextRange(rtb.Document.ContentStart, rtb.Document.ContentEnd); string rtbContent = textRange.Text;
现在您已经有了字符串中的内容,您可以轻松地替换您想要的字符串部分。
高温高压