4
Comment définir la couleur d'arrière-plan d'un JLabel?
Dans mon JPanel, je règle l'arrière-plan d'une JLabelcouleur 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);