我想将Telerik RadRichTextBox导出到变量。

(new RtfFormatProvider()).Export(RadRichTextBox1.Document)


但是此代码将显示此错误:


  无法从RadDocument转换为RadFlowDocument

最佳答案

您可能没有引用适当的RtfFormatProvider类。

检查您的using,或直接致电:

(new Telerik.Windows.Documents.FormatProviders.Rtf.RtfFormatProvider()).Export(RadRichTextBox1.Document)

08-07 19:01