添加子节点时Treeview没有找到父节点

时间:2013-04-23 09:55:48

标签: vb.net treeview nodes

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

这是代码:

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

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

1 个答案:

答案 0 :(得分:1)

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

Nodes.Add的第一个参数是Text Not the Node of Node