ISharedImages 概述?
Java UI 插件提供接口 ISharedImages
来访问可在自己的插件中使用的标准图像。
例如,
Image image = PlatformUI.getWorkbench().getSharedImages().getImage(ISharedImages.IMG_OBJ_ELEMENT);
这非常有效,但我没有找到可用图像的概述。有人可以指点我这样的文档吗?
The Java UI plugin provides the Interface ISharedImages
to access standard images which can be used in own plugins.
e.g.
Image image = PlatformUI.getWorkbench().getSharedImages().getImage(ISharedImages.IMG_OBJ_ELEMENT);
This works very well but I did not find an overview of the available images. Can someone please point me to such a documentation?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用最近添加的插件图像浏览器:
另请参阅 http://help.eclipse.org/mars/index.jsp?topic=%2Forg.eclipse.pde.doc.user%2Fguide%2Ftools%2Fviews%2Fimage_browser_view.htm
You can use the Plug-in Image Browser which was added recently:
See also http://help.eclipse.org/mars/index.jsp?topic=%2Forg.eclipse.pde.doc.user%2Fguide%2Ftools%2Fviews%2Fimage_browser_view.htm
其中一些您可以找到 此处,但请记住,其他第 3 方插件可以添加另一组共享图像,您必须引用该插件文档。
Some of them you can find here, but keep in mind that other 3rd party plugins can add another set of shared images for which, you would have to refer to that plugin documentation.