如何将控件设置为透明背景

时间:2014-01-07 15:50:27

标签: java swt controls transparent

如何将控件的背景设置为透明?

我现在谈的是LabelText控件,但可以是我在GUI中看到的任何标准控件。

更新:根据所选答案的说明,我只需在设置背景图片后添加一行(在我的情况下):

shell.setBackgroundMode(SWT.INHERIT_FORCE);

完整的代码片段非常有助于解决问题。

4 个答案:

答案 0 :(得分:10)

shell.setBackgroundMode(SWT.INHERIT_FORCE);

会做你想做的事。

  

Composite常量表示所有子项都继承了属性(例如背景)。

public static void main(String[] args)
{
    Display display = new Display();
    Shell shell = new Shell(display);
    shell.setLayout(new GridLayout(1, false));
    shell.setText("StackOverflow");

    shell.setBackground(display.getSystemColor(SWT.COLOR_BLUE));
    shell.setBackgroundMode(SWT.INHERIT_FORCE);

    new Button(shell, SWT.PUSH).setText("Button");
    new Label(shell, SWT.NONE).setText("Label");

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

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

    display.dispose();
}

看起来像这样:

enter image description here

答案 1 :(得分:2)

根据我的知识,你不能在SWT中设置透明或半透明的控件(某些操作系统上的shell除外),例如:在表格控件前面显示一个面板,表格将通过面板显示。正如其他海报写的那样,只能继承背景

答案 2 :(得分:1)

如果添加复合并指定以下标志,则它将是透明的:new Composite(shell, SWT.TRANSPARENT | SWT.NO_BACKGROUND);

答案 3 :(得分:0)

在子控件(例如标签)将继承复合背景之前,您需要对复合体进行以下调用。

composite.setBackgroundMode( SWT.INHERIT_DEFAULT );