单击“新建”菜单后显示要选择的自定义项目
Display my custom project to be selected just after clicking NEW menu
目前,当我想要 select 我的自定义项目时,它必须由 NEW->OTHER..->My-Custom-Project select编辑。
是否可以在新建菜单下显示我的自定义项目。
NEW->我的自定义项目。
假设您已经为自定义项目编写了新建向导,使用 org.eclipse.ui.perspectiveExtensions
扩展点添加 'new wizard shortcut' 以直接在新建菜单上显示向导。
类似于:
<extension point="org.eclipse.ui.perspectiveExtensions">
<perspectiveExtension
targetID="org.eclipse.ui.resourcePerspective">
<newWizardShortcut id="org.eclipse.jdt.ui.wizards.NewProjectCreationWizard"/>
快捷方式是特定于视角的。
您可能需要重置透视图(或自定义透视图)才能显示新的快捷方式。
目前,当我想要 select 我的自定义项目时,它必须由 NEW->OTHER..->My-Custom-Project select编辑。
是否可以在新建菜单下显示我的自定义项目。 NEW->我的自定义项目。
假设您已经为自定义项目编写了新建向导,使用 org.eclipse.ui.perspectiveExtensions
扩展点添加 'new wizard shortcut' 以直接在新建菜单上显示向导。
类似于:
<extension point="org.eclipse.ui.perspectiveExtensions">
<perspectiveExtension
targetID="org.eclipse.ui.resourcePerspective">
<newWizardShortcut id="org.eclipse.jdt.ui.wizards.NewProjectCreationWizard"/>
快捷方式是特定于视角的。
您可能需要重置透视图(或自定义透视图)才能显示新的快捷方式。