I’ve got a PropertyGrid with a binding to my ViewModel using the DataObject property.
<grids:PropertyGrid DataObject="{Binding myObj}" IsCategorized="False" IsSummaryVisible="False" IsReadOnly="True"/>
This loads up as expected but I can’t get the control to update when my ViewModel updates. The INotifyPropertyChanged mechanism is working in my application with other controls ok, I’ve tried changing modes but can’t get any data to update after the initialization.
Is this possible with the PropertyGrid? I'm only trying to display the data I'm not trying to update the ViewModel from the UI.