4
JLabel의 배경색을 어떻게 설정합니까?
내 JPanel에서 a의 배경을 JLabel다른 색으로 설정했습니다. "Test"라는 단어를 볼 수 있으며 파란색이지만 배경은 전혀 바뀌지 않습니다. 그것을 보여줄 수 있습니까? this.setBackground(Color.white); JLabel label = new JLabel("Test"); label.setForeground(Color.blue); label.setBackground(Color.lightGray); this.add(label);