2

我想在文本框中附加文本,例如“世界”,但不Windows.Forms使用RichTextBox. 相反,我想指定位置和要插入到 Rtf 属性中的字符串RichTextBox!那么,是否可以直接更新 rtf 字符串?

4

1 回答 1

1
string rtfStuffs = this.richTextBox1.Rtf;
// Edit as you see fit...
this.richTextBox1.Rtf = rtfStuffs;
于 2012-04-29T17:33:36.883 回答