我正在开发一个 WPF 应用程序,发现绑定属性的属性更改通知可以从后台线程发生,但是对于 observablecollection 的任何更改(如添加或删除项目)必须从 UI 线程发生。我的问题是为什么会这样?INotifyPropertyChanged 和 INotifyCollectionChanged 都是由 UI 控件订阅的,那为什么 INotifyPropertyChanged 会例外呢?
例如:
public class ViewModel : INotifyPropertyChanged
{
ObservableCollection<Item> _items = new ObservableCollection<Item>();
private string _name;
public string Name
{
get { return _name; }
set
{
_name = value;
//Can fire this from a background thread without any crash and my
//Name gets updated in the UI
InvokePropertyChanged(new PropertyChangedEventArgs("Name"));
}
}
public void Add(Item item)
{
//Cant do this from a background thread and has to marshal.
_items.Add(item);
}
public event PropertyChangedEventHandler PropertyChanged;
public void InvokePropertyChanged(PropertyChangedEventArgs e)
{
PropertyChangedEventHandler handler = PropertyChanged;
if (handler != null) handler(this, e);
}
}
注意:来自后台线程的 CollectionChanged 事件使应用程序崩溃,但是来自后台线程的 PropertyChanged 事件更新 UI 没有任何问题,是的,这是在 .NET 4.0 中