Skip to content

DevExpress-Examples/winforms-drag-drop-nodes-between-treelists

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

20 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

WinForms TreeList - Move nodes between TreeList controls using drag-and-drop

Enable the TreeList.OptionsDragAndDrop.AcceptOuterNodes option to allow the TreeList control to accept nodes being dragged from another TreeList control.

public Form1() {
    InitializeComponent();
    treeList1.OptionsDragAndDrop.AcceptOuterNodes = true;
    treeList2.OptionsDragAndDrop.AcceptOuterNodes = true;

}

Files to Review

Documentation

See Also

Does this example address your development requirements/objectives?

(you will be redirected to DevExpress.com to submit your response)