当我尝试将字典绑定到列表框时,我得到一个 ArgumentException。无法绑定到新值成员。
我使用以下代码。谁能告诉我出了什么问题。因为当我在字典中输入 i 行时,它的工作正常......
this.contactpersonenListBox = new Dictionary<int, string>();
lsContactpersonen.DataSource = new BindingSource(this.contactpersonenListBox, null);
lsContactpersonen.DisplayMember = "Value";
lsContactpersonen.ValueMember = "Key";