如何在 Eclipse MultiPageEditor 中嵌入 Eclipse CSS 编辑器
我想将 Eclipse 默认 CSS 编辑器嵌入到 Eclipse MultiPage Editor 的页面中。如何实现同样的效果。
I want to embed the eclipse defualt CSS Editor inside a page of Eclipse MultiPage Editor. How to achieve the same.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
创建
MultiPageEditorPart
的子类,并在其createPages()
方法中实例化 CSS 编辑器部分,并使用MultiPageEditorPart.addPage(IEditorPart, IEditorInput)
添加它。请参阅本教程,它对 TextEditor 执行相同的操作。
干杯,
最大限度
Create a subclass of
MultiPageEditorPart
and in itscreatePages()
method, instantiate CSS editor part and add it withMultiPageEditorPart.addPage(IEditorPart, IEditorInput)
.See this tutorial which does the same with TextEditor.
Cheers,
Max