wpf combox的itemsource绑定更新问题
我定义个 List<Student> stuList = new List<Student>();
然后绑定 this.combobox1.ItemsSource =stuList;
我更新了一下stuList,然后再次绑定,这里就有异常了。
我想第二次更新了stuList后,让Combobox也更新。
有两种方法:
一种是将student类继承notifychanged接口,然后把stuList的类型从list改ObservableCollection。这样数据源更新了,Combobox会自动更新数据。
另一种,是在事件里,加入强制刷新的操作。this.combobox1.Item.Refresh();
MVVM模式下也适用。