Populating a ComboBox using C#

后端 未结 10 1415
不知归路
不知归路 2020-12-02 15:55

I would like to populate a combobox with the following:

Visible item / Item Value

English / En

Italian / It

Spainish / Sp 

etc...         


        
10条回答
  •  没有蜡笔的小新
    2020-12-02 16:09

    but do you not just get your combo box name and then items.add("")?

    For instance

    Language.Items.Add("Italian");
    Language.Items.Add("English");
    Language.Items.Add("Spanish");
    

    Hope this helped :D

提交回复
热议问题