4
如何设置JLabel的背景颜色?
在我的中JPanel,我将的背景设置JLabel为其他颜色。我可以看到单词“ Test”,它是蓝色的,但是背景完全没有变化。如何显示? this.setBackground(Color.white); JLabel label = new JLabel("Test"); label.setForeground(Color.blue); label.setBackground(Color.lightGray); this.add(label);