Hi all,
I'm writing an application in C# where I use PropertyGrids to modify collections of objects. Some of the properties of the objects are also displayed by other controls.
What I'd like to know is how best to intercept the changes made by the PropertyGrid so I can update the other controls.
Right now I've written my own container that has events for when items in the collection are modified. I handle these events and update the other controls. This seems to work fine but I'm wondering if there is a better/easier way to do this. Also, this method could become cumbersome and difficult to maintain if I have to write lots of different containers.