7

我遇到了与此几乎相同的问题:

C# 更新绑定到通用列表的组合框

但是,我正在尝试更改显示的字符串;不添加、删除或排序。我已经尝试过引用问题中提供的 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();

编辑::

RefreshItems 似乎是一个私有方法。我刚刚收到错误消息:

“'System.Windows.Forms.ListControl.RefreshItems()' 由于其保护级别而无法访问”

ResetBindings 无效。

4

3 回答 3

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,因此绑定列表会在发生更改时得到“通知”,因此所有这些都将起作用。

于 2009-02-02T20:23:29.627 回答
2

代替SearchComboBox.Refresh();

尝试SearchComboBox.RefreshItems();

或者SearchComboBox.ResetBindings();

我认为您确实需要后者。

您可以在此处访问其成员的文档。

于 2009-02-02T19:45:06.087 回答
2

这是一个旧帖子,但这可能很有用。

我刚刚查看了同样的问题,发现如果您调用对象,并且更改了 Items 位置,它会在内部ResetItem为您引发通知事件,从而导致列表更新。BindingListItemchanged

int idx = SearchComboBox.SelectedIndex;
mBindingList[idx].Display = value;

mBindingList.ResetItem(idx); //raise Item changed event to update the list display
于 2012-03-09T13:02:02.960 回答