[SOLVED] Combobox databinging broken in v1.2.5?

Answered Closed
0
0
Hi,

I've been successfully using the following code prior to v1.2.5 when this has stopped working:

Data.Add(new KeyValuePair<string, string>("One", "1"));
Data.Add(new KeyValuePair<string, string>("Two", "2"));
Data.Add(new KeyValuePair<string, string>("Three", "3"));
comboBox1.DataSource = Data;
comboBox1.ValueMember = "Value";
comboBox1.DisplayMember = "Key";

Now I get no data in my combobox dropdown

Thanks

Nic
  • You must to post comments
Best Answer
0
0

Thanks. Bad regression caused by an internal optimization that escaped. WJ-7298, will be fixed today.

  • You must to post comments
Showing 1 result