循环遍历 TreeView 节点并根据特定值检索节点的最佳方法是什么?
循环遍历 TreeView 节点并根据特定值检索节点的最佳方法是什么?
What is the best method to loop through TreeView nodes and retrieve a node based on certain value?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
创建像
Dictionary
这样的东西并添加其中的所有节点会更有效。 当然,这必须在表单开始时或每当添加新的树节点时完成。 字典键可以是任何内容,例如 TreeNode Text 或与节点关联的业务对象。您不需要遍历所有节点 - 只需使用搜索条件(键)并检索节点。
It would more efficient to create something like a
Dictionary<string, TreeNode>
and add all the nodes in it. This of course must be done at the start of the form or whenever you add new tree nodes. The dictionary key can be anything e.g TreeNode Text or business object associated with the node.You won't need to traverse through all the nodes - just use the search criteria (key) and retrieve the node.