2009-10-12 223 views
1

我有一個編輯器(emf編輯器)。我只想要編輯器中的其中一個選項卡。 如果我不添加其他頁面,我仍然可以在選項卡中看到一個選項卡。我可以隱藏標籤嗎,所以用戶不會看到它是多頁面編輯器嗎?隱藏標籤頁

回答

0

不,MultiPageEditorPart用於多個頁面,所以如果你想要一個頁面只是簡單地使用和EditorPart

我不確定你在做什麼?你說你有'EMF編輯器'。這是你自己設計的編輯器還是你想重寫一些東西?

+0

它是由EMF生成。 將它改爲EditorPart並不是那麼簡單... – Ido 2009-10-13 07:56:04

1

好的...發現:

//the text must be empty so it will not be shown in the tab 
setPageText(index, ""); 

//hide the tab 
CTabFolder tabFolder = (CTabFolder)super.getContainer(); 
tabFolder.setSingle(true);