Hello,
I wonder if it is possible to work with lists and arrays in RadPropertyGrid in the same way. Maybe some example will clarify my problem:
At runtime I bind object of type shown below to RadPropertyGrid.Item:
public class ​SampleType
{
public int Id { get; set; }
public string Content { get; set; }
public int[] array { get; set; }
public List<int> list { get; set; }
}
List is initialized but empty, the same in the case of the array.
In GUI I can modify list property (add/remove items and modify their content), but array property cannot be modified in any way. I understand more static nature of arrays in .NET, but maybe it is possible to enable 'dynamic arrays' in RadPropertyGrid using some property or custom made extension method.
I would be most grateful if you would look into this matter as soon as possible and at least tell me if it is possible :).
Best Regards,
Maciej Nowicki