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.
每当我向 a 添加新项目(root或child)时treeview,它都会附加到列表中(到整个树的底部)。
treeview
有没有办法让我始终可以将新项目(即使是子节点)插入到列表的最顶部,或者设置插入项目的顺序?
PS我知道如何找到最高根,但是我不知道该怎么做。
而不是添加,尝试使用插入:
If TreeView1.Nodes.Count > 0 Then TreeView1.Nodes(0).Nodes.Insert(0, "First Child Node") End If
或对于根节点:
TreeView1.Nodes.Insert(0, "First Root Node")