Eclipse PDE,创建控件
从非常有用的模板中我得到了一些控件。但我如何发现这些控件的位置。
例如,我知道如何创建标签或按钮,但如何找到复选框或将浏览器添加到按钮、列表框...
是否没有任何文档可供开发人员找到这些内容?
From the very helpful templates I´ve got some controls. But how do I discover where those controls are located.
For example I know how to create a label or a button but how can I find a checkbox or add a browser to a button a List Box ...
Isn´t there any documentation where a developer can find those things?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用 Plugin Spy 来查看这些控件是如何引用的其他插件,以便在您自己的插件中复制它。
You could use the Plugin Spy to see how those control are referenced in other plugins, in order to replicate that in your own plugins.
复选框是带有
SWT 的
风格。Button
.CHECK我买了一本SWT书。 SWT 和 JFace 权威指南。
A checkbox is a
Button
with theSWT.CHECK
style.I bought an SWT book. The Definitive Guide to SWT and JFace.