1

不透明度だけでなく、Swing内の不透明度のデフォルトの色を変更するJWindowを作成したいと思います。

したがって、たとえば、私が書く場合:

AWTUtilities.setWindowOpacity(this, 0.5f);

これにより、色が白であるという1つの例外を除いて、私が望むことを正確に実行できます。どうすれば色を黒くできますか?

「これ」などで色​​んなことをやってみましたsetBackground(Color.Black)

4

2 に答える 2

1
        window.getContentPane().setBackground(Color.BLACK);
于 2010-06-18T20:20:22.367 に答える
0

透明な JWindow。

public class TransparentWindow{

    JWindow window;

    public TransparentWindow(){
        initializeTransparentWindow();
    }

    private void initializeTransparentWindow() {
        // searching graphical configuration that provide transparent window
        GraphicsEnvironment env = GraphicsEnvironment.getLocalGraphicsEnvironment();
        GraphicsDevice[] devices = env.getScreenDevices();
        GraphicsConfiguration translucencyCapableGC = null;
        for (int i = 0; i < devices.length && translucencyCapableGC == null; i++) {
            GraphicsConfiguration[] configs = devices[i].getConfigurations();
            for (int j = 0; j < configs.length && translucencyCapableGC == null; j++) {
                if (AWTUtilities.isTranslucencyCapable(configs[j])) {
                    translucencyCapableGC = configs[j];
                }
            }
        }
        if (translucencyCapableGC != null) {
            window = new JWindow(translucencyCapableGC) {
                @Override
                public void paint(Graphics g) {
                    if (getWidth() > 4 && getHeight() > 4) {
                        g.clearRect(0, 0, getWidth(), getHeight());
                        g.setColor(new Color(0x0, 0x0, 0x0, 0xaa));
                        g.fillRect(0, 0, 1, getHeight());
                        g.fillRect(0, 0, getWidth(), 1);
                        g.fillRect(0, getHeight() - 1, getWidth(), 1);
                        g.fillRect(getWidth() - 1, 0, 1, getHeight());
                        g.setColor(new Color(0x0, 0x0, 0x0, 0x10));
                        g.fillRect(1, 1, getWidth() - 1, getHeight() - 1);
                    }
                };
            };
            AWTUtilities.setWindowOpaque(window, false);
        }
        else {
            window = new JWindow();
            AWTUtilities.setWindowOpacity(window, 0.5f);
        }
    }
于 2011-12-28T16:21:09.847 に答える