我将 a 绑定Dictionary
到 a ComboBox
。这似乎工作正常,没有任何编译错误,但在运行时我收到错误:
在数据源上找不到数据成员属性“系统”
这是我的代码:
public Dictionary<string, object> valuList
{
set
{
lComboBox.DataSource = new BindingSource(value,null);
lComboBox.DisplayMember = (value.Keys).ToString();
lComboBox.ValueMember = (value.Values).ToString();
}
}
Dictionary<string, string> x6 = new Dictionary<string, string>();
x6.Add("AS", "ASS");
x6.Add("AAS", "AASS");
myForm.valuList = x6;