Click here to Skip to main content
15,887,240 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I want to display menu like window explorer.
I have one form left side i have tree view and right side i have list view. i want to display tree node at list view when i click at tree now like window explorer.
Posted

You have made several statements, but you haven't asked a question. Sounds like you should do something like this:
Use a menu strip to make a File menu.
Use a split container to split the screen with a left side/right side.
Use a tree view control on the left. Use a list view on the right.

What are you having trouble with?
 
Share this answer
 
listView1.Items.Clear();

foreach (TreeNode node in e.Node.Nodes)
{
listView1.Items.Add(node.Text);
}
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900