4
Jak ustawić kolor tła JLabel?
W moim JPanelustawiłem tło a JLabelna inny kolor. Widzę słowo „Test” i jest niebieskie, ale tło w ogóle się nie zmienia. Jak mogę to pokazać? this.setBackground(Color.white); JLabel label = new JLabel("Test"); label.setForeground(Color.blue); label.setBackground(Color.lightGray); this.add(label);