BoldDeskWe are launching BoldDesk on Product Hunt soon. Learn more & follow us.
For more details about grouping feature, please visit our online help documentation link
Link: http://help.syncfusion.com/ug/wpf/Documents/groups.htm
Please let us know if you require further assistance on this,
Regards,
Ranjitha A.
We have analyzed your requirement. We have a suggestion to achieve your requirement by disabling the visibility of the Selector & Rotator for the Group (for example, the group will not be shown visually) and also when we drag any individual node in that group, the whole group should be move. Please refer the below suggestion.
Code Snippet:
Group grp = new Group(); . . grp.Loaded += new RoutedEventHandler(grp_Loaded); void grp_Loaded(object sender, RoutedEventArgs e) {
Border border = (Border)VisualTreeHelper.GetChild(sender as Group, 0);
Grid grid = (Grid)VisualTreeHelper.GetChild(border, 0);
//Get the reference of Resizer of the Group Resizer resizer = grid.FindName("PART_Resizer1") as Resizer;
//Collapse the visibility of the Resizer resizer.Visibility = Visibility.Collapsed;
//Get the reference of Rotator of the Group Rotator rotator = grid.FindName("PART_Rotator1") as Rotator;
//Collapse the visibility of the Rotator rotator.Visibility = Visibility.Collapsed;
} |
Regards,
Ranjitha A.