Hi all, I'm using a DataTable to sync some properties of a list of objects to a TreeView. When labels are edited, I want the relevant property of the relevant object to be updated, and labels to sync when the properties are changed elsewhere.
Currently I'm updating the object's DataTable row when the property changes, and update the property when the RowChanged event is raised. This results in a stack overflow as one change triggers the other.
How is this best dealt with?