我正在使用 GEF 框架开发 RCP 插件。
我创建了基本的图形编辑器(GraphicalEditor 和 IEditorInput)
IWorkbenchPage page = PlatformUI.getWorkbench().getActiveWorkbenchWindow().getActivePage();
page.openEditor(new TEditorInput("T"), TGraphicalEditor.ID,false);
当我运行应用程序时,我得到一个带有标题的编辑器,其中包含带有编辑器名称的选项卡和用于最大化和最小化编辑器的控制按钮。
我需要的是只显示编辑器,没有标题。
可以做到吗?