国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁(yè) > 編程 > Java > 正文

SWT(JFace)體驗(yàn)之ViewForm的使用

2020-01-31 16:51:13
字體:
來(lái)源:轉(zhuǎn)載
供稿:網(wǎng)友
代碼如下:
復(fù)制代碼 代碼如下:

package swt_jface.demo9;
import org.eclipse.swt.SWT;
import org.eclipse.swt.custom.ViewForm;
import org.eclipse.swt.layout.FillLayout;
import org.eclipse.swt.widgets.Display;
import org.eclipse.swt.widgets.Label;
import org.eclipse.swt.widgets.Shell;
public class ViewFormExample {

    Display display = new Display();
    Shell shell = new Shell(display);
    public ViewFormExample() {
        shell.setLayout(new FillLayout());

        final ViewForm viewForm = new ViewForm(shell, SWT.BORDER);
        Label label = new Label(viewForm, SWT.NULL);
        label.setText("Top center");

        viewForm.setTopCenter(label);
        shell.setSize(400, 200);
        shell.open();

        while (!shell.isDisposed()) {
            if (!display.readAndDispatch()) {
                display.sleep();
            }
        }
        display.dispose();
    }
    public static void main(String[] args) {
        new ViewFormExample();
    }
}

用ViewForm做布局調(diào)整

在上一步創(chuàng)建好ActionGroup中的Action后,接下來(lái)就是要在界面中加上工具欄。先要將布局用ViewForm類來(lái)調(diào)整一下,ViewForm也是繼承自Composite的一個(gè)容器。原先表格是建立在Shell之上的,現(xiàn)在要在Shell上再插入一個(gè)ViewForm容器,以它為基座將工具欄和表格創(chuàng)建于其中,如圖14.9所示。

將原主程序中的open()方法修改如下,其他代碼不變:

shell.setLayout(new FillLayout());ViewForm viewForm = new ViewForm(shell, SWT.NONE); //布局基座ViewFormviewForm.setLayout(new FillLayout());final TableViewer tv = new TableViewer(viewForm, SW… //父容器由shell改為viewForm//……和上一節(jié)相同的代碼(省略)//創(chuàng)建工具欄ToolBar toolBar = new ToolBar(viewForm, SWT.FLAT); // 創(chuàng)建一個(gè)ToolBar容器ToolBarManager toolBarManager = new ToolBarManager(toolBar); // 創(chuàng)建一個(gè)toolBar的管理器actionGroup.fillActionToolBars(toolBarManager); //將Action通過(guò)toolBarManager注入ToolBar中// 設(shè)置表格和工具欄在布局中的位置viewForm.setContent(tv.getControl()); // 主體:表格viewForm.setTopLeft(toolBar); // 頂端邊緣:工具欄shell.open();

圖14.9 布局示意圖

發(fā)表評(píng)論 共有條評(píng)論
用戶名: 密碼:
驗(yàn)證碼: 匿名發(fā)表
主站蜘蛛池模板: 丰城市| 新和县| 松原市| 乌拉特中旗| 泰州市| 西畴县| 昔阳县| 闽侯县| 崇义县| 永胜县| 恭城| 琼海市| 宝坻区| 金溪县| 延长县| 衢州市| 邢台市| 彰化县| 图木舒克市| 香港| 蒙山县| 土默特左旗| 陆河县| 思南县| 绵阳市| 金堂县| 贡山| 西乌珠穆沁旗| 漳浦县| 全州县| 左云县| 拉萨市| 泸定县| 加查县| 思茅市| 炉霍县| 四川省| 方山县| 泸水县| 乳源| 阜南县|