Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我知道您可以通过编写自定义插件向 Eclipse 工具栏添加新按钮,但我将如何像大多数编辑器一样添加一个简单的“打开文件”按钮?
我想我可以用它作为模板来做我想做的事,但是“打开文件对话框”的 commandId 是什么:
如何在 Eclipse 的工具栏上添加撤消/重做按钮?
谢谢你!
如果您想要一个工具栏按钮来模仿菜单 File->Open File... 的行为,那么您正在搜索命令 id
org.eclipse.ui.edit.text.openLocalFile
您希望使用它来代替示例中撤消/重做的命令 ID。
我不相信您可以在工具栏或菜单中使用用于打开文件对话框的特定 commandId。您必须创建一个实现IHandler接口的类并使用类似的东西JFileChooser来处理文件的选择。
IHandler
JFileChooser