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
|
I've got AllowModifyCollections="True" and the insert and delete symbols seem to work. If I set SelectedObject to ObjectA, click the insert and delete buttons, then set SelectedObject to ObjectB and back to ObjectA, I see things have been deleted and added. What I don't see is this happening at the time I actually click the insert or delete buttons. In other words, the insert and delete operations are not updating the PropertyGrid UI immediately. Any ideas what the problem might be? Kevin |
|
|
I'd guess that your collection type isn't implementing INotifyCollectionChanged. Use an ObservableCollection<T> instead of a List<T> and you should be good to go. If you *are* already using ObservableCollection, then could you provide us with a small project that reproduces the problem? |
|