Updating ObservableCollection Item properties using INotifyPropertyChanged

前端 未结 4 1780
小鲜肉
小鲜肉 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条回答
  •  -上瘾入骨i
    2021-01-19 10:40

    The Device class have to implement the interface INotifyPropertyChanged .Then for each property fire the notify property changed event as usuall.

    This will enable the property changed notification automatically.

提交回复
热议问题