可编辑的JComboBox

时间:2009-11-24 12:07:39

标签: java jcombobox

如果用户选择其索引为1的项目,并将其从“123”更改为“abcd”。如何设置“abcd”而不是“123”(在NetBeans中)?另外我该如何永久删除该项?

2 个答案:

答案 0 :(得分:3)

尝试以下方法。当用户更改值并按[ENTER]时,将删除旧值并添加新值。

如果您需要替换相同位置的值,则必须提供自己的模型,以支持在特定位置添加值。

final DefaultComboBoxModel model = new DefaultComboBoxModel(new String[] {"Red", "Green", "Blue"});

comboBox = new JComboBox(model);
comboBox.setEditable(true);
comboBox.addActionListener(new ActionListener() {
    private int selectedIndex = -1;

    @Override
    public void actionPerformed(ActionEvent e) {
        int index = comboBox.getSelectedIndex();
        if(index >= 0) {
            selectedIndex = index;
        }
        else if("comboBoxEdited".equals(e.getActionCommand())) {
            Object newValue = model.getSelectedItem();
            model.removeElementAt(selectedIndex);
            model.addElement(newValue);
            comboBox.setSelectedItem(newValue);
            selectedIndex = model.getIndexOf(newValue);
        }
    }
});
comboBox.setSelectedIndex(0);

答案 1 :(得分:0)

阅读教程How to Use Combo Boxes

Editable combo box, before and after the arrow button is clicked

可编辑的组合框,前后 单击箭头按钮

请参阅:使用可编辑的组合框部分。

该页面的摘录:

JComboBox patternList = new JComboBox(patternExamples);
patternList.setEditable(true);
patternList.addActionListener(this);