我已經使用一個字符串列表填充了一個ComboBox,並且由於該列表相當長,我正在努力添加一個自動完成功能,比如ComboBox誰將在用戶輸入字符時顯示匹配的字符串。 我想要的東西的想法可以在這裏找到Auto-Complete with only text and not numbers ComboBox Excel VBA但它使用VBA Excel來完成。 這裏是我到目前爲止 Private Su
假設我有以下類 public class foo{
String a;
String b;
String c;
String d;
... // more Variables
public String getA(){
return a;
}
public void setA(String a){
this.a = a;
}
... // more getters a