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;}