Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

.net object explorer control

Does anyone know of an object explorer control for .net winforms (or webforms)?
By "object explorer" I mean something like the visual studio object explorer that I can use it in my own program.

I found these links on the net:
1. http://www.codeproject.com/KB/trace/oe.aspx - It is pretty old and I don't know if relevant today.
2. http://www.pcreview.co.uk/forums/can-embed-vs-nets-object-explorer-program-t1342274.html - nobody answers him..

like image 436
Naor Avatar asked Aug 19 '11 23:08

Naor


People also ask

What is C# control?

What is Control in c# programming Language? C# Control Windows Forms controls are reusable components that encapsulate user interface functionality and are used in client-side Windows applications. A button is a control, which is an interactive component that enables users to communicate with an application.

Which control does not have a visual interface C#?

Unlike other controls, components do not provide a user interface to the user and thus do not need to be displayed on the Windows Forms Designer surface.

How do I add a button to a form in Visual Studio?

Select the new FlowLayoutPanel, and then open the Toolbox and select Common Controls. Double-click the Button item to add a button control called button1. Double-click Button again to add another button.


1 Answers

The one that Visual Studio uses is available in WinForms. It's called PropertyGrid.

http://msdn.microsoft.com/en-us/library/aa302326.aspx

You can add all sorts of Attributes to your code so that it displays how you want it to.

like image 75
Matthew Steeples Avatar answered Sep 24 '22 12:09

Matthew Steeples