What I would like the following code to do is add a node and its directory structure from one tree to another when clicked, but the line of code is incorrect, and I m not sure what I can do to fix it... What is the correct way to use node.Clone() in this situation?
我敢肯定,它是一个简单的解决方案。
private void treeView_NodeMouseClick(object sender, TreeNodeMouseClickEventArgs e)
{
tVS.Nodes.Add(e.Node.Clone());
}