Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Are there any utilities to list all components of a WinForm?

Our previous developer used a plugin (Infragistics) in order to create the UI components (buttons, tabs, docks, labels, etc.) but it requires all of it's DLLs to be included.

I'm looking to convert this to a basic WinForm with "stock" UI components without using the Infragistics (smaller install? almost no DLLs).

I was wondering if there is a tool/plugin that will list the Name property (possibly more) of all the components/elements in a given WinForm?

C# MVS2008

like image 645
mastofact Avatar asked Sep 01 '25 20:09

mastofact


1 Answers

It is built into Visual Studio. View + (Other Windows) + Document Outline. Open the form in design mode. It shows a list of all the controls and components you have in the form with Name and Type.

like image 189
Hans Passant Avatar answered Sep 03 '25 23:09

Hans Passant