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.
私はこのようにしました:
myTreeView.Nodes[foo] = newTreeNode.Clone(); // this doesn't work
私は疑問に思っています、どうすればそれを正しく行うことができますか?
EDIT:古いものを削除して新しいツリーノードを挿入することを考えています。
これを試して:
TreeNode node = myTreeView.Nodes[foo]; int index = myTreeView.Nodes.IndexOf(node); myTreeView.Nodes.RemoveAt(index); myTreeView.Nodes.Insert(index, newTreeNode);