FIX. RadTreeView - after a data bound node is edited and the data source is updated , two nodes are added to the control
Workaround:
After updating the binding source reset the data source of the tree
this.radTreeView.DataSource = null;
this.radTreeView.DataSource = this.MyBindingSource;