Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想要以下代码做的是单击时将节点及其目录结构从一棵树添加到另一棵树,但是代码行不正确,我不确定我能做些什么来修复它...什么在这种情况下使用 node.Clone() 的正确方法是什么?
我敢肯定它是一个简单的修复。
private void treeView_NodeMouseClick(object sender, TreeNodeMouseClickEventArgs e) { tVS.Nodes.Add(e.Node.Clone()); }
此处需要演员表
tVS.Nodes.Add((TreeNode)e.Node.Clone());
尝试
Node newNode = (Node)e.Node.Clone(); tVS.Nodes.Add(newNode);