|
-
Jun 30th, 2009, 12:56 AM
#1
Thread Starter
Addicted Member
[RESOLVED] TreeView - get expanded node
Code:
public void treeView1_AfterExpand(object sender, TreeViewEventArgs e)
{
}
How do I get the expanded node of the tree? (The node that the user expands)
Last edited by winterslam; Jun 30th, 2009 at 01:18 AM.
-
Jun 30th, 2009, 01:05 AM
#2
Re: TreeView - get expanded node
As is the case with all events, the 'e' parameter contains the data for the event. If you'd read the documentation you'd know that because it provides a code example. ALWAYS read the relevant documentation first when you have a question.
-
Jun 30th, 2009, 01:16 AM
#3
Thread Starter
Addicted Member
Re: TreeView - get expanded node
Thanks..
Noted
My apology.
I'm pretty new to .NET
-
Jun 30th, 2009, 01:35 AM
#4
Re: TreeView - get expanded node
 Originally Posted by winterslam
I'm pretty new to .NET
That's more reason to read the documentation, not less. You're far from the only person not to but it seems that using the Help menu in VS is the last thing that a lot of beginners think of when they need help. As the name suggests, it should be the first.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|