W moim JPanel
ustawiłem tło a JLabel
na 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);