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.
我在 asp.net 中创建了树视图。我想获取当前选定父节点的最后一个子节点。
请指导我摆脱这个问题?
使用此代码获取当前选定节点中的最后一个子节点:
TreeNode t=TreeView1.SelectedNode.ChildNodes[TreeView1.SelectedNode.ChildNodes.Count - 1];
希望这对您有所帮助。