我想知道CDT的上下文ID。
上下文中使用的上下文ID:
PlatformUI.getWorkbench().getHelpSystem().displayHelpResource(cdt_context_id);
有什么方法可以找到各种帮助内容的上下文ID吗?
答案 0 :(得分:1)
我认为您可以使用Eclipse Plug-in间谍来查看菜单,工具栏贡献等细节。插件-spy窗口将显示所选UI元素的所有细节,例如哪个插件正在贡献元素,哪个类等。 。在底部,将显示相应的帮助上下文ID。
To inspect the current selection, press ALT-SHIFT-F1
To inspect menus, press ALT-SHIFT-F2 and then select the menu item
详细信息将显示在以下链接
中