How the property grid displays an array of values

  • Thread starter Thread starter Dan
  • Start date Start date
D

Dan

Hi,

I want the property grid to display a list of values, say

MyParameters
{
private ArrayList Surveys;
....
}


Survey1
Name: New York
Operator: Siemans
Price: 1000
Survey2
Name: Washington DC
Operator: Lucent
Price: 999

I program in C#.

Thanks.

Dan
 
Hi,

Please start from reviewing ICustomTypeDescriptor interface documentation
and ExpandableObjectConverter class documentation in MSDN.
 
Back
Top