Eclipse 视图可以为应用程序菜单做出贡献吗?
我正在创建一个简单的 Eclipse 应用程序,其中仅包含视图。我选择仅使用视图,以便用户可以按照自己喜欢的方式排列和堆叠他们的视图(因为编辑器和视图不能堆叠在一起)。也不需要传统的“编辑器”,我不希望编辑器空间始终显示。但是,关于我只使用视图的决定已经足够了。
我想知道是否有一种方法可以让视图为应用程序的主菜单做出贡献?例如,切换视图会导致主应用程序菜单发生变化吗?
I'm creating a simple eclipse application which will contain only views. I've chosen to use only views so users can arrange and stack their views however they like (since editors and views cannot be stacked together). There also isn't any need for a traditional "editor" and I don't want the editor space always showing. But, enough about my decision to use only views.
I was wondering if there is a way for a view to contribute to the main menu for the application? For example, can switching views cause the main application menu to change?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用
org.eclipse.ui.menus
扩展点并将命令设置为仅在视图处于活动状态时可见。You can use the
org.eclipse.ui.menus
extension point and set your command to only be visible when the view is active.