如何向现有的“文件”添加上下文菜单Eclipse插件开发中的菜单?
在 Eclipse 主菜单中,如何为现有主菜单做出贡献,例如需要在主菜单“文件”下创建上下文菜单。位置 URI“文件”是什么
In Eclipse main menu how to contribute to an existing Main Menu for ex need to create a context menu under Main menu "File" . What is the location URI "File"
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
文件菜单的位置 URI 是
menu:file
。有关不同部分和 ID 的信息,请参阅 org.eclipse.ui.internal.ide.WorkbenchActionBuilder...
The location URI for the file menu is
menu:file
.See
org.eclipse.ui.internal.ide.WorkbenchActionBuilder
for information about the different sections and IDs...以下是如何将子菜单添加到“文件”菜单的示例:
用于在“文件”菜单中定位 MyMenu 的常量可以在 org.eclipse.ui.IWorkbenchActionConstants 中找到
干杯,
最大限度
Here is an example how to add submenu to File menu:
Constants for positioning MyMenu within File menu could be found at
org.eclipse.ui.IWorkbenchActionConstants
Cheers,
Max