最佳答案
在我的 JPanel
中,我将 JLabel
的背景设置为不同的颜色。我可以看到“测试”这个词,它是蓝色的,但是背景没有任何变化。我怎样才能让它显示出来?
this.setBackground(Color.white);
JLabel label = new JLabel("Test");
label.setForeground(Color.blue);
label.setBackground(Color.lightGray);
this.add(label);