2012-06-12 68 views
1

我跟着Vogella RCP Tutorial和創建的應用程序,lloking這樣的:Eclipse RCP的 - 隱藏編輯

enter image description here

的「我的觀點」被明確地加入到視野。
下面的編輯是默認的。

問題:

  • 我如何禁用默認編輯器?
  • 上圖中的工作臺和透視圖在哪裏?

回答

6
在你的觀點

public void createInitialLayout(IPageLayout layout) { 
     this.layout = layout; 

     String editorAreaId = layout.getEditorArea(); 
     layout.setEditorAreaVisible(false); 
} 

這應該禁用編輯

相關問題