我的项目有问题,因为我的目标是让用户手动用数组中的项填充6个字段;我想到6 JComboBox
es与相同的项目,当你在一个框中选择一个项目时,它将在其余的项目中被禁用。我开始了,虽然我已经搜索过,但我只找到了在构造函数中进行搜索的方法。
cb1.addActionListener(new ActionListener(){
@Override
public void actionPerformed(ActionEvent e) {
if(cb1.getSelectedIndex()==1) {
// this is as far as I go, but disables the entire jcombobox
cb2.setEnabled(false);
// this is more like I want, but it doesn't work.
cb2.setSelectedIndex(1).setEnabled(false);
}}});
如果有人知道一种更有效的方法可以让用户手动将数组项目分配到许多字段,我会欢迎它。
答案 0 :(得分:1)
您无法禁用JComboBox
的项目。你可以从这里删除它是如何: -
import java.awt.Container;
import java.awt.FlowLayout;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.JComboBox;
import javax.swing.JFrame;
public class Combobox extends JFrame{
Combobox(){
this.setVisible(true);
this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
String[] list={"car","bus","bike"};
final JComboBox c1=new JComboBox(list);
final JComboBox c2=new JComboBox(list);
Container c=this.getContentPane();
c.setLayout(new FlowLayout());
c.add(c1);
c.add(c2);
c1.addActionListener(new ActionListener(){
@Override
public void actionPerformed(ActionEvent e) {
int index=c1.getSelectedIndex();
c2.removeItemAt(index);
}
});
this.pack();
}
public static void main(String[] args) {
new Combobox();
}
}
final JComboBox c1=new JComboBox(list);
会使JComboBox
的项目为list
。使用final
,因为在内部类ActionListener
内调用c1,用于单击事件。 index=c1.getSelectedIndex();
将获得index location
中所选项目的c1
。 c2.removeItemAt(index);
会移除位于c index
位置的项目。由于c1
和c2
都包含相似的项目,因此项目的index
位置相同。
如果要在某个时刻重新插入c2中的项目
使用
index=c1.getSelectedIndex();
item=c2.getItemAtIndex(index);
c2.removeItemAt(index);
然后使用
恢复项目c2.insertItemAt(item,index);
注意 - index
和item
如果要在其外部使用,则应在ActionListener
之外声明。
答案 1 :(得分:0)
尝试启用ComboItem。函数setEnabled用于对象,在你的情况下为cb2。