我实际上遇到了同样的问题:
C# Update combobox bound to generic list
但是,我正在尝试更改显示的字符串;不添加,删除或排序。我已经尝试了引用问题中提供的BindingList解决方案,但它没有帮助。 在编辑项目时,我可以看到组合框的DataSource属性已正确更新,但组合框中显示的内容不是DataSource属性中的内容。
我的代码如下:
mSearchComboData = new List<SearchData>();
mSearchComboData.Add(new SearchData("", StringTable.PatientID));
mSearchComboData.Add(new SearchData("", StringTable.LastName));
mSearchComboData.Add(new SearchData("", StringTable.LastPhysician));
mSearchComboData.Add(new SearchData("", StringTable.LastExamDate));
mBindingList = new BindingList<SearchData>(mSearchComboData);
SearchComboBox.Items.Clear();
SearchComboBox.DataSource = mBindingList;
SearchComboBox.ValueMember = "Value";
SearchComboBox.DisplayMember = "Display";
...
当我尝试更新内容时,我会执行以下操作:
int idx = SearchComboBox.SelectedIndex;
mBindingList[idx].Display = value;
SearchComboBox.Refresh();
EDIT ::
RefreshItems似乎是一个私有方法。我只是收到错误消息:
“'System.Windows.Forms.ListControl.RefreshItems()'由于其保护级别而无法访问”
ResetBindings无效。
答案 0 :(得分:11)
如果您要更改整个对象(意味着整个SearchData对象),那么绑定列表将知道此更改,因此正确的事件将被内部触发,并且组合框将更新。但是,由于您只更新了一个属性,因此绑定列表不知道某些内容已发生变化。
您需要做的是让您的SearchData类实现INotifyPropertyChanged。这是我写的一个快速示例:
public class Dude : INotifyPropertyChanged
{
private string name;
private int age;
public int Age
{
get { return this.Age; }
set
{
this.age = value;
if (this.PropertyChanged != null)
{
this.PropertyChanged(this, new PropertyChangedEventArgs("Age"));
}
}
}
public string Name
{
get
{
return this.name;
}
set
{
this.name = value;
if (this.PropertyChanged != null)
{
this.PropertyChanged(this, new PropertyChangedEventArgs("Name"));
}
}
}
public event PropertyChangedEventHandler PropertyChanged;
}
这里有一些要测试的代码:
private void button1_Click(object sender, EventArgs e)
{
//Populate the list and binding list with some random data
List<Dude> dudes = new List<Dude>();
dudes.Add(new Dude { Name = "Alex", Age = 27 });
dudes.Add(new Dude { Name = "Mike", Age = 37 });
dudes.Add(new Dude { Name = "Bob", Age = 21 });
dudes.Add(new Dude { Name = "Joe", Age = 22 });
this.bindingList = new BindingList<Dude>(dudes);
this.comboBox1.DataSource = bindingList;
this.comboBox1.DisplayMember = "Name";
this.comboBox1.ValueMember = "Age";
}
private void button3_Click(object sender, EventArgs e)
{
//change selected index to some random garbage
this.bindingList[this.comboBox1.SelectedIndex].Name = "Whatever";
}
由于我的类现在实现了INotifyPropertyChanged,当一些内容发生变化时,绑定列表会被“通知”,所有这些都将起作用。
答案 1 :(得分:2)
而不是SearchComboBox.Refresh();
尝试SearchComboBox.RefreshItems();
或SearchComboBox.ResetBindings();
我认为你真的需要后者。
您可以访问其成员here的文档。
答案 2 :(得分:2)
这是一篇旧帖子,但这可能很有用。
我刚刚看到同样的问题,并且发现如果您在ResetItem
对象上调用BindingList
并使用更改的项目位置,则内部会引发Itemchanged
通知事件因为你导致列表更新。
int idx = SearchComboBox.SelectedIndex;
mBindingList[idx].Display = value;
mBindingList.ResetItem(idx); //raise Item changed event to update the list display