如果用户选择其索引为1的项目,并将其从“123”更改为“abcd”。如何设置“abcd”而不是“123”(在NetBeans中)?另外我该如何永久删除该项?
答案 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)
可编辑的组合框,前后 单击箭头按钮
请参阅:使用可编辑的组合框部分。
该页面的摘录:
JComboBox patternList = new JComboBox(patternExamples);
patternList.setEditable(true);
patternList.addActionListener(this);