我有一个JComboBox
包含三个 Items {"Personel", "Magasinier", "Fournisseur"}
。
我希望它JComboBox
显示 value "Choisir une option :"
,这是一个不可选择的值。
我在之后尝试了这段代码initComponents();
:
this.jComboBox1.setSelectedItem("Choisir une option :");
但它不起作用。
我怎样才能做到这一点 ?
我有一个JComboBox
包含三个 Items {"Personel", "Magasinier", "Fournisseur"}
。
我希望它JComboBox
显示 value "Choisir une option :"
,这是一个不可选择的值。
我在之后尝试了这段代码initComponents();
:
this.jComboBox1.setSelectedItem("Choisir une option :");
但它不起作用。
我怎样才能做到这一点 ?
JComboBox
您可以使用以下 SSCCE 之类的代码覆盖模型中的选择代码:
public class JComboExample {
private static JFrame frame = new JFrame();
private static final String NOT_SELECTABLE_OPTION = " - Select an Option - ";
private static final String NORMAL_OPTION = "Normal Option";
public static void main(String[] args) throws Exception {
JComboBox<String> comboBox = new JComboBox<String>();
comboBox.setModel(new DefaultComboBoxModel<String>() {
private static final long serialVersionUID = 1L;
boolean selectionAllowed = true;
@Override
public void setSelectedItem(Object anObject) {
if (!NOT_SELECTABLE_OPTION.equals(anObject)) {
super.setSelectedItem(anObject);
} else if (selectionAllowed) {
// Allow this just once
selectionAllowed = false;
super.setSelectedItem(anObject);
}
}
});
comboBox.addItem(NOT_SELECTABLE_OPTION);
comboBox.addItem(NORMAL_OPTION);
frame.add(comboBox);
frame.pack();
frame.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
SwingUtilities.invokeLater(new Runnable() {
@Override
public void run() {
frame.setVisible(true);
}
});
}
}
这将显示一个组合框,其中包含“”的初始选择- Select an Option -
。一旦用户选择了另一个选项,就不能再次选择原来的选项。
我偶然发现了这个问题,并对邓肯的回答进行了一些更改。我的解决方案如下所示:
import javax.swing.DefaultComboBoxModel;
import javax.swing.JComboBox;
public class JEComboBox<T> extends JComboBox<T> {
public JEComboBox(final T placeHolder){
setModel(new DefaultComboBoxModel<T>() {
private static final long serialVersionUID = 1L;
boolean selectionAllowed = true;
@Override
public void setSelectedItem(Object anObject) {
if (!placeHolder.equals(anObject)) {
super.setSelectedItem(anObject);
} else if (selectionAllowed) {
// Allow this just once
selectionAllowed = false;
super.setSelectedItem(anObject);
}
}
});
addItem(placeHolder);
}
}
添加占位符时,您会创建一个匿名对象并覆盖 toString 方法。实现可能如下所示:
public class car{
String final model;
public car(String model){
this.model = model;
}
}
和 JEComboBox 的创建:
JEComboBox comboBoxWithPlaceHolder = new JEComboBox<Car>(new Car{
public String toString(){
return "- Select your car -"
}
});
优点
缺点
我认为最简单和最快的方法是使用自定义ListCellRenderer
public class TestComboBox<T> extends JComboBox<T> {
public TestComboBox() {
super();
setRenderer(new ItemRenderer());
}
public TestComboBox(ComboBoxModel<T> aModel) {
super(aModel);
setRenderer(new ItemRenderer());
}
public TestComboBox(T[] items) {
super(items);
setRenderer(new ItemRenderer());
}
public TestComboBox(Vector<T> items) {
super(items);
setRenderer(new ItemRenderer());
}
class ItemRenderer extends DefaultListCellRenderer {
public Component getListCellRendererComponent(JList<?> list, Object value, int index, boolean isSelected, boolean cellHasFocus){
super.getListCellRendererComponent(list, value, index, isSelected, cellHasFocus);
if (getSelectedItem() == null && index < 0){
setText("placeholder");
}
return this;
}
}
}