gpt4 book ai didi

java - 如何在 JLayeredPane 上设置背景颜色?

转载 作者:行者123 更新时间:2023-12-02 15:57:00 25 4
gpt4 key购买 nike

我很好奇为什么在 JLayeredPane 上调用 setBackground(Color) 似乎并没有真正设置背景颜色。我猜这与 JLayeredPane 由于某种原因必须具有透明背景有关?不管怎样,这里有一些代码显示了这个问题。这是在 Mac 上,所以我相信它使用的是 OSX LAF。产生的结果如this image所示。 。

import java.awt.Color;
import java.awt.Dimension;

import javax.swing.BorderFactory;
import javax.swing.JFrame;
import javax.swing.JLayeredPane;
import javax.swing.JPanel;

public class Main {
public static void main(String[] args) {

// This should be done with Swing Utilities, but I wanted to keep this
// simple...
JFrame foo = new JFrame();
foo.setSize(new Dimension(500, 500));

JLayeredPane bar = new JLayeredPane();
bar.setPreferredSize(new Dimension(200, 200));
bar.setBackground(Color.red);

// If you comment out the following line, you don't see any indication
// the JLayeredPane is actually being drawn to screen
bar.setBorder(BorderFactory.createLineBorder(Color.green));


JPanel content = new JPanel();
content.add(bar);

foo.setContentPane(content);
foo.setVisible(true);
}
}

最佳答案

您可以尝试使分层 Pane 不透明:

bar.setOpaque(true);

关于java - 如何在 JLayeredPane 上设置背景颜色?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4480196/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com