⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 smsperspective.java

📁 学生成绩管理系统 eclipse rcp开发 swt技术
💻 JAVA
字号:
package com.zdh.sms;import org.eclipse.ui.IFolderLayout;import org.eclipse.ui.IPageLayout;import org.eclipse.ui.IPerspectiveFactory;import org.eclipse.ui.console.IConsoleConstants;public class SmsPerspective implements IPerspectiveFactory {	public void createInitialLayout(IPageLayout layout) {		String editorArea = layout.getEditorArea();		// layout.setEditorAreaVisible(false);		IFolderLayout left = layout.createFolder("left", IPageLayout.LEFT,				0.3f, editorArea);		left.addView("com.zdh.sms.navigator.NavigatorView");		IFolderLayout b = layout.createFolder("bottom", IPageLayout.BOTTOM,				0.5f, "left");		b.addView("com.zdh.sms.SearchView");		IFolderLayout bottom2 = layout.createFolder("bottom2",				IPageLayout.BOTTOM, 0.7f, editorArea);		bottom2.addView(IConsoleConstants.ID_CONSOLE_VIEW);	}}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -