2

我想知道 CDT 的上下文 ID。

上下文 ID 用于:

PlatformUI.getWorkbench().getHelpSystem().displayHelpResource(cdt_context_id);

有什么方法可以找到各种帮助内容的上下文 ID?

4

1 回答 1

1

我认为您可以使用 Eclipse Plug-in spy 来查看菜单、工具栏贡献等的详细信息。 Plugin -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

详细信息将在下面的链接中显示

http://www.eclipse.org/pde/incubator/spy/

于 2013-09-26T09:17:29.603 回答