如何在SWT TreeItem上设置多个图像?

时间:2012-08-24 20:23:19

标签: java swt

我正在使用SWT Tree,其中每个TreeItem都需要有多个图片。现在我正在尝试

treeItem.setImage(index, Image)

并尝试在单个Images上设置多个TreeItem。但它似乎没有用。这个方法是关于什么的?任何帮助表示赞赏。

1 个答案:

答案 0 :(得分:0)

我真的没有看到你的问题。以下对我来说非常适合:

public static void main(String[] args)
{
    Display display = Display.getDefault();
    Shell shell = new Shell(display);
    shell.setLayout(new FillLayout());

    Tree tree = new Tree(shell, SWT.NONE);
    tree.setHeaderVisible(true);        

    TreeColumn column1 = new TreeColumn(tree, SWT.LEFT);
    column1.setText("Column 1");
    column1.setWidth(50);
    TreeColumn column2 = new TreeColumn(tree, SWT.LEFT);
    column2.setText("Column 2");
    column2.setWidth(50);
    TreeColumn column3 = new TreeColumn(tree, SWT.LEFT);
    column3.setText("Column 3");
    column3.setWidth(50);

    Image image = YOUR_IMAGE_HERE;

    TreeItem item = new TreeItem(tree, SWT.NONE);
    item.setImage(0, image);
    item.setImage(1, image);
    item.setImage(2, image);

    shell.pack();
    shell.open();

    while(!shell.isDisposed())
    {
        if(!display.readAndDispatch())
            display.sleep();
    }
}