treeview copy/paste
-
Hi, I need to implement node copy/paste functionality in my treeview control. What is a good way of accomplishing this? Thanx
-
Hi, I need to implement node copy/paste functionality in my treeview control. What is a good way of accomplishing this? Thanx
-
Hi, You can not "copy" nodes but you can clone them using the myTree.Nodes[i].Clone() method Playing with this you can implement what you need :)
Thanx, but if I'm looking for sort of 'simple' copy/paste, namely just duplicating a node visually using keys 'cntrl C' and 'cntrl V', do I need to catch a 'keyPress' event or is there another way of doing it?
-
Thanx, but if I'm looking for sort of 'simple' copy/paste, namely just duplicating a node visually using keys 'cntrl C' and 'cntrl V', do I need to catch a 'keyPress' event or is there another way of doing it?