如何在TreeView中获取树节点
c#. Windows 图形用户界面形式。
如何在树视图中获取树节点?当我单击树视图中的某些节点时,我应该使用什么事件处理程序来显示? PS 英语不好,抱歉
c#. Windows gui forms.
How can i get treenodes in the treeview? And what eventhandler i should use to show smth when i clicked on the treeview some nodes ?
p.s sory for bad english
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我认为你想要 FirstNode 和NextNode 属性。
FirstNode
为您提供特定节点的第一个子节点。NextNode
为您提供下一个同级节点。因此,给定以下树结构:如果您位于
Database
节点上,则FirstNode
是对Table1
的引用,而NextNode
是对Database2
的引用。I think you want the FirstNode and NextNode properties.
FirstNode
gives you the first child of a particular node.NextNode
gives you the next sibling. So, given this tree structure:If you're on the
Database
node, thenFirstNode
is a reference toTable1
, andNextNode
is a reference toDatabase2
.如何在树视图中获取树节点?
使用 Treeview 的 SelectedNode 属性
http://msdn.microsoft.com/en -us/library/system.windows.forms.treeview.selectednode.aspx
当我单击树视图某些节点时,我应该使用什么事件处理程序来显示 smth?
使用树视图。
http://msdn.microsoft.com/en -us/library/system.windows.forms.treeview.afterselect.aspx
How can i get treenodes in the treeview?
Use the SelectedNode property of the Treeview
http://msdn.microsoft.com/en-us/library/system.windows.forms.treeview.selectednode.aspx
what eventhandler i should use to show smth when i clicked on the treeview some nodes ?
Use the AfterSelect event of the TreeView.
http://msdn.microsoft.com/en-us/library/system.windows.forms.treeview.afterselect.aspx