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.
我正在尝试使用方法在树视图中找到一个节点FindNode,它可以工作但有时不会并返回null
FindNode
null
TreeNode selectedTreeNode = TreeView1.FindNode(strPath);
我将完全正确的 ValuePath 传递给该方法。我的树视图相当大,这可能是原因吗?
当我使用以下行时,它可以工作但会降低性能。
TreeView1.ExpandAll();
我不能不使用FindNode就使用ExpandAll吗?
ExpandAll