WPF 中的 RTF 到 XML (C#)
请告诉我,如何在 WPF (C#) 中将 RTF 转换为 XML。我对本机方法很感兴趣。 RichTextBox中的文本可以设置不同的格式,也可以在RichTextBox中插入图片等...
Please, tell me, how can I convert RTF to XML in WPF (C#). I am interesting in native methods. Text in RichTextBox can be formatted differently, also in the RichTextBox can be inserted pictures, etc...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
没有原生的方式。您需要解析 RTF 文件,然后将其转换为 XML。 codeproject 上有您可能感兴趣的教程:- 通过解析 RichTextBox 中的文本格式富文本格式
There is no native way. You will need to parse the RTF file and then convert it to XML. There is tutorial at codeproject which might be of your interest :- Formatting Text in a RichTextBox by Parsing the Rich Text Format