.NET 的一个非常好的 RichTextBox 替代品
我正在编写一个 Windows .NET 应用程序,需要一个 WYSIWYG 文本编辑器控件,该控件可以
- 显示与文本内联的图像
- 输出文本,并将其格式化为 HTML、XML 或类似的内容(RTF 除外),
- 最好是免费的,但商业也可以
I'm writing a Windows .NET app that needs a WYSIWYG text editor control that can
- display images inline with the text
- output the text with it's formatting into HTML, XML or something similar (other than RTF)
- preferably free but commercial is fine
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
mshtml 控件(Internet Explorer 引擎控件)将起作用。 您可以内嵌显示图像,将文本输出为 HTML,而且是免费的。
您可以通过设置 designMode = true 来打开编辑模式。 这是一篇好文章,详细介绍了如何去做。
另一种替代方法是使用 WPF 控件之一。 WPF RichTextBox 比 WinForms RichTextBox 强大得多。 WPF RTB 可以输出为多种不同的格式,并且具有高度可扩展性。
The mshtml control (Internet Explorer engine control) will work. You can display images inline, output the text to HTML, and is free.
You can turn on edit mode by setting designMode = true. Here's a good article detailing how to do that.
Another alternative is to use one of the WPF controls. The WPF RichTextBox is far more powerful than than WinForms RichTextBox. The WPF RTB can be output to a number of different formats and is highly extensible.
你可以尝试 txText -
http://www.textcontrol.com/
You could try txText -
http://www.textcontrol.com/