某些工具栏菜单在 eclipse rcp 应用程序中看不到

发布于 2024-12-16 16:48:35 字数 72 浏览 0 评论 0原文

当我启动 rcp 应用程序时,一些自定义工具栏菜单不会出现在我的 rcp 应用程序中,如果我更改视角,它们就会出现。有什么想法吗?

When I launch rcp application some of the custom toolbar menus doesnot appear in my rcp application,if I change perspective then they appears.Any idea?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

静水深流 2024-12-23 16:48:35

如果没有其他信息,这很难说。如何创建这些工具栏项?使用一些贡献者类或在plugin.xml中使用菜单贡献?使用第二个选项,检查您是否已在正确的plugin.xml 中定义它们(定义您的视角,您希望在其中实际看到它们)。

确保您的视角中有命令/操作的处理程序。

如果您使用关联,请确保这些是正确的:

<extension point="org.eclipse.ui.actionSetPartAssociations">
<actionSetPartAssociation targetID="YouractionSetId">
    <part id="YourPartId"/>
</actionSetPartAssociation>

That's hard to say with no additional information. How do you create those toolbar items? Using some contributor class or in plugin.xml, using menu contributions? With the second option, check, that you have defined them in the proper plugin.xml (the one, which defines your perspective, in which you want to actually see them).

Ensure, that there are handlers for your commands/actions in your perspective.

If you are using associations, ensure, that those are correct:

<extension point="org.eclipse.ui.actionSetPartAssociations">
<actionSetPartAssociation targetID="YouractionSetId">
    <part id="YourPartId"/>
</actionSetPartAssociation>

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文