Hi all I have a datagrid t开发者_JS百科hat is filled with and observablecollection Lets say I have 2 columns DataOfBirth (dataPicker) and Surname(textBox)
This is using a mvvm pattern and the grid is mapped to the collection mentioned above.
When changing the date or amending the surname it does not seem to pick up the changes?
I cannot post the code but I was wondering about some pointers?
Thanks a lot!
What kind of object do you put in your ObservableCollection? Does that class implement INotifyPropertyChanged and do you raise the PropertyChanged events for the DateOfBirth and Surname properties?
精彩评论