循环遍历 TreeView 节点并根据特定值检索节点的最佳方法是什么?

发布于 2024-07-29 14:47:10 字数 42 浏览 4 评论 0原文

循环遍历 TreeView 节点并根据特定值检索节点的最佳方法是什么?

What is the best method to loop through TreeView nodes and retrieve a node based on certain value?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

毅然前行 2024-08-05 14:49:34

创建像 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文