在eclipse中,怎么通过代码或者plugin.xml设置透视图中某个NewWizardShortcut排显示的第一个并在其后加分隔符
时间: 2023-11-27 20:49:38 浏览: 63
你可以在 `plugin.xml` 文件中为透视图添加一个 `NewWizardShortcut`,并设置其 `after` 属性为你想要的位置。例如,如果你想要将该 `NewWizardShortcut` 放在 `org.eclipse.ui.newWizard` 之后,并在其后添加分隔符,你可以使用以下代码:
```xml
<extension point="org.eclipse.ui.perspectiveExtensions">
<perspectiveExtension targetID="your.perspective.id">
<newWizardShortcut
id="your.new.wizard.shortcut.id"
label="Your New Wizard Shortcut Label"
icon="icons/your_icon.png"
class="your.new.wizard.class"
after="org.eclipse.ui.newWizard">
<separator />
</newWizardShortcut>
</perspectiveExtension>
</extension>
```
其中,`your.perspective.id` 是你要添加 `NewWizardShortcut` 的透视图的 ID,`your.new.wizard.shortcut.id` 是你要添加的 `NewWizardShortcut` 的 ID,`Your New Wizard Shortcut Label` 是你要显示的标签,`icons/your_icon.png` 是你要显示的图标路径,`your.new.wizard.class` 是你要启动的新向导的类名,`org.eclipse.ui.newWizard` 是你要将该 `NewWizardShortcut` 放在其后的 ID。
在 `<newWizardShortcut>` 标签中,通过添加 `<separator />` 标签可以添加分隔符。
阅读全文