問候同胞Stackoverflownians視圖的角度延伸的相對場,Eclipse RCP的 - 不工作
目前正在開發一個Eclipse RCP應用程序。
我試圖使視圖出現在正確的地方時,重置視角。
在我的plugin.xml:
<perspectiveExtension
targetID="the.perspective.id">
<view
id="the.first.view.id"
relationship="stack"
relative="org.eclipse.ui.navigator.ProjectExplorer"
visible="false">
</view>
<view
id="the.second.view.id"
relationship="left"
relative="org.eclipse.ui.navigator.ProjectExplorer"
visible="true">
</view>
</perspectiveExtension>
,其中第一和第二視圖在視圖擴展點聲明。
作爲每eclipse.org:
堆指示該視圖將與相關視圖的文件夾中被堆疊
的問題是,當我重置的角度來看,我得到的在另一個地方查看(更確切地說,在右邊),佔據工作臺的50%。
是否應該在我的plugin.xml中再次聲明ProjectExplorer視圖,以便relative
字段的stack
值能夠工作?
編輯:我看了在另一個插件項目
<view
id="org.eclipse.search.ui.views.SearchView"
minimized="false"
relationship="stack"
relative="dreisoft.tresos.launcher2.api.views.ErrorLog"
visible="false">
</view>
這似乎是工作,我已經看過了IPerspectiveFactory
和createInitialLayout
是空的。儘管如此,這是有效的。
尊敬你的,
維拉德
您的'IPerspectiveFactory'是否添加了「ProjectExplorer」視圖? –
IPerspectiveFactory的createInitialLayout爲空。我會添加更多信息。 –