Welcome to the WPF feedback portal. We’re happy you’re here! If you have feedback on how to improve the WPF, we’d love to hear it!>
Thanks for joining our community and helping improve Syncfusion products!
Currently PropertyGrid does not have support to explore items inside a collection, instead it shows only properties of collection.
Need to provide support to explore individual items in collection and it properties using PropertyGrid
[TypeConverter(typeof(ExpandableObjects))]
public class AllPeople
{
public AllPeople()
{
People = new List
People.Add(new Person("SAM", 1));
People.Add(new Person("BOB", 2));
}
public List<
{
get;
set;
}
}
[TypeConverter(typeof(ExpandableObjects))]
public class Person
{
public Person(string name, int id)
{
Name = name;
ID = id;
}
public string Name
{
get;
set;
}
public int ID
{
get;
set;
}
}