我有一个 JComboBox,我希望用户在其中选择颜色。JComboBox 只显示颜色,没有任何文本。我想出了这个解决方案。请告诉我这是好的还是应该避免的以及为什么。我是 Swing 和 Java 的新手,所以请耐心等待 :)
public class ToolBar{
private MainFrame mainFrame;
public ToolBar (MainFrame mainFrame) {
this.mainFrame = mainFrame;
}
public JPanel getToolBar(){
JPanel toolbarPanel = new JPanel(new FlowLayout(FlowLayout.LEADING,2,2));
toolbarPanel.setPreferredSize(new Dimension(mainFrame.getScreenWidth(),60));
toolbarPanel.setBorder(BorderFactory.createLineBorder(Color.gray));
JButton fillButton = new JButton("Fill: ");
fillButton.setPreferredSize(new Dimension(60,20));
//fillButton.setBackground(Color.red);
toolbarPanel.add(fillButton);
String[] test = {" ", " " , " " , " " , " " , " "};
JComboBox colorBox = new JComboBox(test);
colorBox.setMaximumRowCount(5);
colorBox.setPreferredSize(new Dimension(50,20));
colorBox.setRenderer(new MyCellRenderer());
toolbarPanel.add(colorBox);
return toolbarPanel;
}
class MyCellRenderer extends JLabel implements ListCellRenderer {
public MyCellRenderer() {
setOpaque(true);
}
public Component getListCellRendererComponent(
JList list,
Object value,
int index,
boolean isSelected,
boolean cellHasFocus)
{
setText(value.toString());
switch (index) {
case 0: setBackground(Color.white);
break;
case 1: setBackground(Color.red);
break;
case 2: setBackground(Color.blue);
break;
case 3: setBackground(Color.yellow);
break;
case 4: setBackground(Color.green);
break;
case 5: setBackground(Color.gray);
break;
}
return this;
}
}
}
这工作正常。它在 JComboBox 中以不同的颜色显示空选择元素。问题是当用户选择颜色时,JComboBox 中选择的颜色不会改变。我应该添加哪些代码行以及在哪里添加,以便当用户从列表中选择颜色时,该颜色会显示在 JComboBox 字段中?
我尝试了一些解决方案,但结果是当用户在 JComboBox 中选择颜色选择时总是变为灰色......
我已经查看了几个类似的问题,但我只是无法弄清楚选择完成后代码的哪一部分正在处理 JComboBox 的颜色变化......