在我的CustomerCollectionViewModel
中,我有一个ObservableCollection<CustomerViewModel>
CustomerList
名为CurrentCount
property 的属性,它返回CustomerList.Count()
.
在关联视图中,我将 CustomerList 绑定到 DataGrid,将 CurrentCount 绑定到标签。实际上,它们是许多其他相关属性,它们提供有关 CustomerList 的聚合信息。大约十几个左右。
我目前对 MVVM 的理解需要对UICustomerViewModel
中SendPropertyChanged()
的所有汇总摘要标签进行膨胀。是不是可能所有CustomerViewModel
更新从被捕获的事件中冒出来的事件,DataGrid
然后扇出以更新聚合标签。