Does anyone know an object explorer control for .net winforms (or web forms)?By "object explorer" I mean something like a visual object explorer that I can use in my own program.
I found these links on the net:1. http://www.codeproject.com/KB/trace/oe.aspx - This is pretty old, and I donβt know if it is relevant today.2.http: //www.pcreview.co.uk/forums/can-embed-vs-nets-object-explorer-program-t1342274.html - no one answers it.
I used this code to build an object tree: http://www.codeguru.com/csharp/csharp/cs_syntax/reflection/article.php/c5885
Sounds like you need a reflector. Have you checked ILSpy ? This is an open source browser. You can get the code and configure it as you wish.
It is very simple to program this yourself using routines in the System.Reflection namespace. It simply lists all types in the assembly and lists all methods, properties, variables in the type.
The one that uses Visual Studio is available in WinForms. It was called PropertyGrid.
http://msdn.microsoft.com/en-us/library/aa302326.aspx
You can add all kinds of attributes to your code so that it displays as you want.