How to set a control to a transparent background

僤鯓⒐⒋嵵緔 提交于 2019-12-01 00:58:55

问题


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.


回答1:


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:




回答2:


According to my knowledge you can't set a control (except of a shell on some operating systems) transparent or semitransparent in SWT, e.g. show a panel in front of a table control where the table will show through the panel. As the other posters wrote, one only can inherit the background.




回答3:


If you add a Composite and specify the following flags, it will be transparent: new Composite(shell, SWT.TRANSPARENT | SWT.NO_BACKGROUND);




回答4:


You need to make the following call on your composite before child controls, such as Labels will inherit the background from the composite.

composite.setBackgroundMode( SWT.INHERIT_DEFAULT );


来源:https://stackoverflow.com/questions/20975980/how-to-set-a-control-to-a-transparent-background

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!