我有一个具有复杂属性类型的 ViewModel,并希望将我的视图绑定到该对象的嵌套属性。
我的 ViewModel 正在实现INotifyPropertyChanged
(或者确切地说BaseViewModel
是在实现它)。父属性的类未实现INotifyPropertyChanged
。
Car 类没有实现INotifyPropertyChanged
。但是我没有更改属性Manufacturer
,我更改了MyCarProperty
属性,所以我希望该OnNotifyPropertyChanged
事件会触发值更新?
当我更新父属性的值时,嵌套属性没有更新。你能告诉我如何实现这个功能吗?
视图模型
public class ViewModel : BaseViewModel
{
private Car _myCarProperty;
public Car MyCarProperty
{
get { return _myCarProperty; }
set
{
if (value == _myCarProperty) return;
_myCarProperty = value;
OnPropertyChanged();
}
}
}
在视图中绑定
<TextBlock Text="{Binding Path=MyCarProperty.Manufacturer}" />
当我更改MyCarProperty
视图的值时不会更新。
谢谢你的帮助!
编辑: OnPropertyChanged() 实现
#region INotifyPropertyChanged
public event PropertyChangedEventHandler PropertyChanged;
[NotifyPropertyChangedInvocator]
protected virtual void OnPropertyChanged([CallerMemberName] string propertyName = null)
{
PropertyChangedEventHandler handler = PropertyChanged;
if (handler != null)
{
handler(this, new PropertyChangedEventArgs(propertyName));
}
}
#endregion INotifyPropertyChanged