Properties Windows in Visual Studio

  • Thread starter Thread starter poifull
  • Start date Start date
P

poifull

In the "Properties Window" in the Visual Studio Environment. When you click
on Categorized View, properties are grouped by property types with an
collapsible icon next to the type name. That would be a nice feature for my
application. Is the Property Window something I have to develop or if it is
available somewhere? If I have to build it what control should I use?

Thanks for reading this message
 
Hi,

This control is part of the .NET framework. It is called the PropertyGrid and is
in the System.Windows.Forms namespace.

It is not included in the VS.NET Toolbox by default, but you can add it yourself.

Best regards,

Rodger

Time Management Guide - Make better use of your time
<http://www.TimeThoughts.com/timemanagement.htm>
 
poifull said:
In the "Properties Window" in the Visual Studio Environment. When you
click on Categorized View, properties are grouped by property types with
an collapsible icon next to the type name. That would be a nice feature
for my application. Is the Property Window something I have to develop or
if it is available somewhere?

You can use VS.NET's property grid control
('System.Windows.Forms.PropertyGrid' class).

Getting the Most Out of the .NET Framework PropertyGrid Control
<URL:http://msdn.microsoft.com/library/en-us/dndotnet/html/usingpropgrid.asp>
 
Back
Top