wpf中如何读取richTextBox控件中的文本内容

2024-11-27 12:59:02
推荐回答(1个)
回答1:

TextRange a = new TextRange(richTextBox1.Document.ContentStart, richTextBox1.Document.ContentEnd);
Message.show(a.Text);