关于Eclipse插件:如何实现这样的属性视图?
我想在 PropertyView/PropertySheet 中显示一组对象,就像这样:
如何做它? 谢谢。
I want to display a array of objects in PropertyView/PropertySheet,just like this:
How to do it?
thx.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以按照此 Eclipse 提示:创建自定义属性视图,基于
PageBookView
(这是一种在活动部分中显示所选元素的属性的视图。每当选择更改或活动部分更改时,它都会跟踪它们并显示属性,除非您使用 'Pin从 3.5 开始提供“选择”功能)。接下来:
现在这将对项目中的属性做出反应资源管理器(而不是您自己的一组属性)。
因此,您需要返回到 PageBookView 文章 并了解如何实现您自己的显示。
You can follow this eclipse tips: creating a custom property view, based on
PageBookView
(which is the kind of view which displays the properties of the selected element in the active part. Whenever the selection changes or the active part changes, it tracks them and displays the properties, unless you used the 'Pin to selection' feature available from 3.5).Followed by:
Now this would react to properties from the project explorer (and not your own set of properties).
So you need to get back to the PageBookView article and see how to implement your own display.