Delphi 有类似 CKEditor 的组件吗?
我正在寻找 CKEditor 之类的组件,最好是 delphi 7。
有什么好的免费组件我可以尝试一下吗?
Am searching for a CKEditor like component, preferably for delphi 7.
Any good free ones out there I could try out?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我不知道有任何用于 Delphi 7 的 WYSIWYG 免费/开源库。我使用了一些商业库并取得了巨大成功。 TRichView 和 WPtools 是两个具有导出为 HTML/CSS 选项的 RichText 编辑器。
您还可以查看TEmbeddedWB,它公开了比标准 TWebBrowser 更多的属性。只需导航(或加载 html)、设置 TEmbeddedWB.DesignMode := true 并进行编辑即可。
I am not aware of any WYSIWYG free/open-source libraries for Delphi 7. There are some commercial libraries that I have used with great success. TRichView and WPtools are two which are RichText editors which have export to HTML/CSS options.
You can also look at TEmbeddedWB which exposes many more properties than the standard TWebBrowser. Just navigate (or load html), set
TEmbeddedWB.DesignMode := true
and edit away.您可以在类似的 StackOverflow 问题的答案中找到更多信息:
WYSIWYG HTML Editor Component for Delphi
You will find more information in the answers to this similar StackOverflow question:
WYSIWYG HTML Editor Component for Delphi
在设计模式下,CKEditor 不是 TWebBrowser 的一部分。它的意义远不止于此:一个复杂的 JavaScript 应用程序,使您能够以所见即所得的模式编辑 HTML。我目前正在使用这个令人惊叹的编辑器和 delphichromiumembedded 为 Delphi 构建一些组件(数据库和独立组件)。
CKEditor is not part of TWebBrowser in design mode. It is much more: A complex JavaScript application that enables you to edit HTML in WYSIWYG mode. I am currently building some components (DB and standalone) for Delphi using this amazing editor and delphichromiumembedded.