Bonjour, j'aimerai modifier la couleur de mes items JCombobox indépendamment.
Leur attribuer une couleur différente...
Pourriez-vous m'éclairer à ce sujet ?
Version imprimable
Bonjour, j'aimerai modifier la couleur de mes items JCombobox indépendamment.
Leur attribuer une couleur différente...
Pourriez-vous m'éclairer à ce sujet ?
Salut,
Pour les items dans la liste, il faut utiliser un ListCellRenderer. Exemple :
Pour la partie éditeur, c'est beaucoup plus complexe.Code:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61 public class JComboBoxColor { public static void main(String[] args) { JFrame frame = new JFrame("Démo"); frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); ColorItem[] items = {new ColorItem(Color.RED, "Machin"), new ColorItem(Color.CYAN, "Bidule"), new ColorItem(Color.GREEN, "Truc")}; JComboBox<ColorItem> combo = new JComboBox<>(items); combo.setRenderer(new DefaultListCellRenderer() { @Override public Component getListCellRendererComponent(JList<?> list, Object value, int index, boolean isSelected, boolean cellHasFocus) { Component component = super.getListCellRendererComponent(list, value, index, isSelected, cellHasFocus); ColorItem item = (ColorItem)value; if ( !isSelected ) { setBackground(item.getBackground()); } return component; } }); frame.add(combo, BorderLayout.NORTH); frame.setSize(300, 300); frame.setLocationRelativeTo(null); frame.setVisible(true); } public static class ColorItem { private final Color background; private final String value; public ColorItem(Color color, String background) { this.value=background; this.background=color; } public Color getBackground() { return background; } public String getValue() { return value; } @Override public String toString() { return value; } } }
Merci beaucoup pour votre aide, c'est exactement ce qu'il me fallait !
Bonne soirée encore merci :D