Dans mon JPanel
, je règle l'arrière-plan d'une JLabel
couleur différente. Je peux voir le mot "Test" et il est bleu, mais le fond ne change pas du tout. Comment puis-je le montrer?
this.setBackground(Color.white);
JLabel label = new JLabel("Test");
label.setForeground(Color.blue);
label.setBackground(Color.lightGray);
this.add(label);