How do I get the expanded node of the tree? (The node that the user expands)Code:public void treeView1_AfterExpand(object sender, TreeViewEventArgs e)
{
}
Printable View
How do I get the expanded node of the tree? (The node that the user expands)Code:public void treeView1_AfterExpand(object sender, TreeViewEventArgs e)
{
}
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.
Thanks..
Noted
My apology.
I'm pretty new to .NET