I would like to populate a combobox with the following:
Visible item / Item Value
English / En Italian / It Spainish / Sp etc...
Simple way is:
Dictionary dict = new Dictionary() { {"English ","En" }, {"Italian ","It" }, {"Spainish ","Sp " } }; combo.DataSource = new BindingSource(dict, null); combo.DisplayMember = "Key"; combo.ValueMember = "Value";