How to cut, copy, and paste nodes in WinForms TreeViewAdv?
Clipboard operation
Implementing clipboard functions for TreeViewAdv is quite simple. To start, create a new TreeNodeAdvCollection. To copy a node, call Clone method on that node, then add the clone to the collection you created. To paste a node from the collection, call Clone method on that node and add the clone to the Nodes collection of the node you want to paste it under.