This thread looks to be a little on the old side and therefore may no longer be relevant. Please see if there is a newer thread on the subject and ensure you're using the most recent build of any software if your question regards a particular product.
This thread has been locked and is no longer accepting new posts, if you have a question regarding this topic please email us at support@mindscape.co.nz
|
Do all classes that utilize the WPF Property Grid need to implement INotifyPropertyChanged? If i don't implement INotifyPropertyChanged, a Boolean property in my object gets modified by the 'True/False' drop down editor but the display is not refreshed. public class Person { public string Name {get;set;} public Boolean Retired {get;set;} } |
|
|
Hi, For automatically applying changes to the grid, yes, all the objects must implement INotifyPropertyChanged OR be WPF Dependency Properties which have change notification built in. These two mechanisms are widely used in WPF for managing change notification. I hope that helps, John-Daniel Trask |
|