A simple way is to use Dictionary Object
Dictionary comboSource = new Dictionary();
comboSource.Add ("1", "Sunday");
comboSource.Add ("2", "Monday");
comboBox1.DataS ource = new BindingSource(c omboSource, null);
comboBox1.Displ ayMember = "Value";
comboBox1.Value Member = "Key";...
Leave a comment: