or
_treeView.AddHandler(RadDragAndDropManager.DropQueryEvent, new EventHandler<DragDropQueryEventArgs>(MainTree_DropQuery), true);private void MainTree_DropQuery(object sender, DragDropQueryEventArgs e){ if (Keyboard.Modifiers == ModifierKeys.Control) { TreeViewDragCue cue = e.Options.DragCue as TreeViewDragCue; cue.DragActionContent = "Copy To"; }
e.QueryResult = true;}
Hi,
Assume I have fixed number of rows & node structure, and number of columns and columns data would change. When I come back to the screen, it should retain the previous node expand/collapse state.
Is there any way to achieve this functionality?
Thanks,
Suman