我正在使用 mvvm-light,我注意到 RaisePropertyChanged 的这种奇怪行为。
xml:
<ListBox ItemsSource="{Binding Collection}"/>
<TextBlock Text="{Binding Text}"/>
可观察类:
public class A : ObservableObject
{
private string _b;
public string B
{
get { return this._b; }
set
{
this._b = value;
this.RaisePropertyChanged("B");
}
}
}
虚拟机:
public MainViewModel(IDataService dataService) { this.Collection = new List<A>(...); }
public RelayCommand Command1
{
get
{
return this._command1 ?? (this._command1= new RelayCommand(() =>
{
this.Collection.Add(new A());
this.Collection[2].B = "updated";
this.RaisePropertyChanged("Collection");
this.RaisePropertyChanged("Text");
}));
}
}
public RelayCommand Command2
{
get { return this._command2?? (this._command2 = new RelayCommand(() => { this.Text++; })); }
}
public List<A> Collection { get; set; }
public int Text { get; set; }
因此, RaisePropertyChanged("Collection") 不会更新绑定,而 RaisePropertyChanged("Text") 会更新。我可以通过多次执行 Command2 和之后的 Command1 来看到它。如果 Collection 是 ObservableCollection,则新元素会显示在视图中,但更新的项目不是,这意味着 ObservableCollection 的内部机制有效,但 RaisePropertyChanged 无效。