MemoryStream stream = new MemoryStream(ASCIIEncoding.Default.GetBytes(rtf));
richTextBox1.Selection.Load(stream, DataFormats.Rtf);
rtf格式赋值给WPF RICHTEXTBOX
最新推荐文章于 2023-09-13 10:58:00 发布
MemoryStream stream = new MemoryStream(ASCIIEncoding.Default.GetBytes(rtf));
richTextBox1.Selection.Load(stream, DataFormats.Rtf);