Updating ObservableCollection Item properties using INotifyPropertyChanged

前端 未结 4 1784
小鲜肉
小鲜肉 2021-01-19 10:05

Checking to make sure my assumptions are correct.

I have an ObservableCollection class. I am calling a web service and retrieving an array of Devices. I am then enum

4条回答
  •  面向向阳花
    2021-01-19 10:42

    I think you can overload = operator and do the assignment of properties there. then the PropertyChanged events will be generated and you will still have the same syntax as in first example.

提交回复
热议问题