旅游景点 旅游攻略 日本旅游 文化旅游 旅游景区 昆明旅游 桂林旅游 乡村旅游 上海旅游

eclipse rcp显示视图定位

时间:2024-10-14 13:37:32

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

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

eclipse rcp显示视图定位

3、我在菜单中打开视图,代码如下(没有定位视图的区域,rcp系统指定区域显示视图。):try { IWorkb髫潋啜缅enchPage ap = PlatformUI.getWorkbench().getActiveWorkbenchWindow().getActivePage(); ap.showView(Vpyuyuedengji.ID); } catch (PartInitException e1) { MessageDialog.openInformation(null, "提示", "系统出现错误不能打开预约登记的视图!"); }

eclipse rcp显示视图定位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显示视图定位eclipse rcp显示视图定位

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

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

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

eclipse rcp显示视图定位

7、在不同区域打开同一个视图:IFolderLayout left=layout.createFolder("left", IPageLayout.LEFT, 0.15f, IPageLayout.ID_EDITOR_AREA);left.addView(Vpyuyuedengji.ID+":1"); IFolderLayout right=layout.createFolder("right", IPageLayout.RIGHT, 0.85f, IPageLayout.ID_EDITOR_AREA);right.addView(Vpyuyuedengji.ID+":2"); IFolderLayout bottom=layout.createFolder("bottom", IPageLayout.BOTTOM, 0.85f, IPageLayout.ID_EDITOR_AREA);bottom.addView(Vpyuyuedengji.ID+":3");

eclipse rcp显示视图定位eclipse rcp显示视图定位
© 2025 途途旅游
信息来自网络 所有数据仅供参考
有疑问请联系站长 site.kefu@gmail.com