具有从右到左 Unicode 支持的 C# WinForms 富编辑器
WinForms 是否有支持从右到左并可以导出为 HTML 的富编辑器?
标准的 RichTextBox 无法导出为 HTML(是否有 RTF 到 HTML 转换器?)
DevExpress 的 XtraRichEdit 不支持从右到左。
Are there any rich editors for WinForms that support right-to-left and can export to HTML?
The standard RichTextBox cannot export to HTML (Is there an RTF to HTML converter?)
DevExpress's XtraRichEdit doesn't support right-to-left.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用NRTFTree - C#中用于RTF处理的类库来管理Rich文本
注意: NRtfTree 不是一个将 RTF 转换为 HTML 的库,但在其中一个演示源文件中有一个使用 NRtfTree 实现此目的的示例。
You can use NRTFTree - A class library for RTF processing in C# for managing Rich Text
Note: NRtfTree is NOT a library to convert RTF to HTML, but there's an example on achieving this using NRtfTree in one of the demo source files.
看一下以下链接:
Take a look at following link: