Winform在RichTextBox控件中创建表格
我需要在 Windows 窗体应用程序中使用 RichTextBox 控件创建一个简单的编辑器,其中包含创建表的功能。
是否可以在 RichTextBox 控件中创建表格?
如果是这样,任何有关最佳方法的指示将不胜感激。
I need to create a simple editor using a RichTextBox control in a windows forms application that includes the ability to create tables.
Is it possible to create a table in a RichTextBox control?
If so, any pointers on the best way to do this would be appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
winforms RichTextbox 控件利用 RTF 作为丰富格式语言。 由于此类表格是控件的固有部分,因此您必须了解足够的 RTF 来对表格进行编码。
这是 1.9.1 规范。 享受。
Wikipedia 列出了所有规范
The winforms RichTextbox control utilizes RTF as it's rich-format language. As such tables are an inherent part of the control, you just must know enough RTF to code up the table.
Here's the 1.9.1 specification. Enjoy.
Wikipedia has all the specifications listed on it