Hi,
I have several ViewModels linked to my RadDiagram; and some are children of others. I'd like that, when I select one, the children view models get selected as well so I can drag all of them as a group.
The problem is that doing this breaks the dragging of the shapes on the screen, and the first one of the children shapes doesn't follow the dragging of the others. The other children drag along just fine. Am I doing something wrong?
Thanks a lot,
Pierre
private void onPropertyChanged(object sender, PropertyChangedEventArgs args){
if (args.PropertyName.Equals(nameof(this.IsSelected)))
{
foreach (var child in this.ChildrenViewModels)
{
child.IsSelected = this.IsSelected;
}
}
}