I've been playing around with the PropertyGrid a bit. Just to see what can bee done.
I have one class, a point, and another, line, that contains a number of points
I made a ExpandableObjectConverter so the point's displayed as i want. (one line "X, Y Z" and one line for each value).
I added the [NotifyParentProperty(true)] so that when i type in a value for X the line with all three values are updated.
So far so good.
TheI added a property for "current point index" and another that displays the point at the given index.
But when i changed the index, the point are not updated. I made the point-property to show the point at current index.
It is updated when i click in the point property.
How can i make it to update whenI change the index ? Can this be done?
/Mats