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!

  • Check out the features or bugs others have reported and vote on your favorites. Feedback will be prioritized based on popularity.
  • If you have feedback that’s not listed yet, submit your own.

Thanks for joining our community and helping improve Syncfusion products!

4
Votes

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<People>

        {

            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;

        }

    }