我有一个JFrame,背景颜色为黑色。

setBackground(Color.BLACK);


我使用RigidArea作为过滤器:

Component rigidArea = Box.createRigidArea(new Dimension(0, 20));
rigidArea.setBackground(Color.BLACK);
getContentPane().add(rigidArea);


但这是行不通的,因为刚性区域的颜色不是黑色。怎么了

最佳答案

您是否尝试过将JFrame内容窗格的背景设置为黑色?

getContentPane().setBackground(Color.BLACK);

09-25 10:15