eclipse rcp显示视图定位

2025-05-24 06:35:11

1、首先建立一个插件项目,新手可以看一下链接。

2、新建一个viewpart视图,不熟悉怎么建立视图看一下上个经验。本次用的视图Vpyuyuedengji.ID.https://jingyan.baidu.com/article/8ebacdf06ef6ea49f75cd566.html

eclipse rcp显示视图定位eclipse rcp显示视图定位

4、打开Perspective这个文件,找到createInitialLayout这个方法,添加代码:IFolderLayout bottom=layout.createFolder("bottom", IPageLayout.BOTTOM, 0.85f, IPageLayout.ID_EDITOR_AREA); bottom.addPlaceholder(Vpyuyuedengji.ID);这个命令是在“bottom”这个区域中显示视图。

eclipse rcp显示视图定位

5、在createInitialLayout这个方法添加代码,在左面区域中显示视图:IFolderLayout left=layout.createFolder("left", IPageLayout.LEFT, 0.15f, IPageLayout.ID_EDITOR_AREA); left.addPlaceholder(Vpyuyuedengji.ID);

eclipse rcp显示视图定位

6、在右面区域中显示视图:IFolderLayout right=layout.createFolder("right", IPageLayout.RIGHT, 0.85f, IPageLayout.ID_EDITOR_AREA);right.addPlaceholder(Vpyuyuedengji.ID);

eclipse rcp显示视图定位eclipse rcp显示视图定位
声明:本网站引用、摘录或转载内容仅供网站访问者交流或参考,不代表本站立场,如存在版权或非法内容,请联系站长删除,联系邮箱:site.kefu@qq.com。
猜你喜欢