XP-style folder tree?
C#
1
Posts
1
Posters
0
Views
1
Watching
-
I spent a several lifetimes by searching how to implement nice folder tree in C#. A tree which looks like that in Windows Explorer. There are several solutions that are complicated, platform-dependent and full of errors. What I need is to implement a tree usable on different platforms only with minimum modifications (it will show "Desktop" and "Network Places" on Win32, but can be simply modified to work well on Linux or Mac with Mono). Of course, there is FolderBrowserDialog but this is a dialog and I need a control that can be docked inside a form and throws several events (directory changed etc.) Any help would be appreciated.