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

📄 treeclass.java

📁 eclipse cookbook the source code of the book
💻 JAVA
字号:
package org.cookbook.ch09;

import org.eclipse.swt.*;
import org.eclipse.swt.widgets.*;

public class TreeClass {

    public static void main(String [] args) {
        Display display = new Display();
        Shell shell = new Shell(display);
        shell.setText("Trees");

        final Tree tree = new Tree(shell, SWT.BORDER);
        tree.setSize(290, 290);
        shell.setSize(300, 300);
        
        for(int loopIndex1 = 0; loopIndex1 < 5; loopIndex1++) {
            TreeItem item0 = new TreeItem(tree, 0);
            item0.setText("Level 0 Item " + loopIndex1);
            for(int loopIndex2 = 0; loopIndex2 < 5; loopIndex2++) {
                TreeItem item1 = new TreeItem(item0, 0);
                item1.setText("Level 1 Item " + loopIndex2);
                for(int loopIndex3 = 0; loopIndex3 < 5; loopIndex3++) {
                    TreeItem item2 = new TreeItem(item1, 0);
                    item2.setText("Level 2 Item " + loopIndex3);
                }
            }
        }
        
        shell.open();
        while(!shell.isDisposed()) {
            if(!display.readAndDispatch()) display.sleep();
        }
        display.dispose();
    } 
}

⌨️ 快捷键说明

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