Reputation:
I found an example of showing the filesystem tree (like in Windows Explorer) on MSDN here. Do you know any alternative for this in WinForms? Thanks in advance!
The example linked above, reports the following error when running:
Is anybody meeting the same error?
Upvotes: 0
Views: 92
Reputation: 31184
well, WinForms has it's own bulit-in TreeView control that you can use. From there you can populate it manually. using the System.IO namespace
Upvotes: 1