0

所以我有这个 Treeview,我手动添加了一些项目。可以毫无问题地添加父节点,但是当我想将子节点添加到我通过键搜索的父节点时,由于某种原因它失败了。

这是代码:

tvConstantGroups.Nodes.Add("Boekhouding")
tvConstantGroups.Nodes("Boekhouding").Nodes.Add("Exact") 'These 2 lines fail
tvConstantGroups.Nodes("Boekhouding").Nodes.Add("BoB")

我收到的错误消息是节点“Boekhouding”不存在(NULL / Nothing

4

1 回答 1

1
tvConstantGroups.Nodes.Add("Boekhouding", "Boekhouding")
tvConstantGroups.Nodes("Boekhouding").Nodes.Add("Exact", "Exact")
tvConstantGroups.Nodes("Boekhouding").Nodes.Add("BoB", "Exact")

Nodes.Add 的第一个参数是 Text 不是 Node 的名称

于 2013-04-23T10:44:25.280 回答