WPF RichtextBox中加载Rtf字段

MemoryStream stream = new MemoryStream(ASCIIEncoding.Default.GetBytes((string)rtf));
 mRichTextBox.Selection.Load(stream, DataFormats.Rtf);
原文地址:https://www.cnblogs.com/sunhappy0318/p/2526604.html