How to set a control to a transparent background

controls, java, swt, transparent

Solution

shell.setBackgroundMode(SWT.INHERIT_FORCE);

will do what you want.

The `Composite` constant to indicate that an attribute (such as background) is inherited by all children.

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();
}

Looks like this:

Problem

How do I set the background of a control to be transparent? I am speaking of `Label` and `Text` controls at the moment, but can be any of the standard controls that I see in the GUI.

Original source