Create a control like Visual Studio property list

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Has anyone got any pointers that would help me create a control like the Visual Studio .NET property list. Most of the functionality seems to be in the DataGrid control - I am loading this from a DataSet which could take it's data from a db or XML stream. The data consists simply of tagged values

Initially I'd like to be able to divide the property screen into collapsible sections. It would also be nice to be able to select values from combo boxes.

Has anyone had to tackle this before

I'm developing this in VB.NET but appreciate advice in any .NET language..

Thanks
 
Why don't you use the PropertyGrid control that comes with Windows Forms?

Niki

Sean said:
Has anyone got any pointers that would help me create a control like the
Visual Studio .NET property list. Most of the functionality seems to be in
the DataGrid control - I am loading this from a DataSet which could take
it's data from a db or XML stream. The data consists simply of tagged
values.
Initially I'd like to be able to divide the property screen into
collapsible sections. It would also be nice to be able to select values
from combo boxes.
 
Back
Top