作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我很好奇为什么在 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/
我是一名优秀的程序员,十分优秀!