Observable Collection Notify when property changed in MVVM
问题 I am trying to bind observable collection to DataGrid, i want to notify when any row is edited in datagrid. My code works fine for notifing when record is added or removed but its not notifing when record is edited. Please let me know if this is the right way of binding using observable collection in MVVM and whether i am missing someting. Thanks in advance. public class studentViewModel : INotifyPropertyChanged { #region constructor public studentViewModel() { _student = new studentModel();