JComboBox autocomplete

后端 未结 3 666
小鲜肉
小鲜肉 2020-11-27 05:32

How do I perform auto-complete in editable JComboBox in Netbeans 7.1 like in ComboBox in VB dot net. I have a combo box with a list binding, I want

3条回答
  •  伪装坚强ぢ
    2020-11-27 05:52

    If you want to do this yourself, you can follow the steps explained in this article.

    this.comboBox = new JComboBox(new Object[] { "Ester", "Jordi",
            "Jordina", "Jorge", "Sergi" });
    AutoCompleteDecorator.decorate(this.comboBox);
    

提交回复
热议问题