Hello,
In my WPF application I am using the property grid to display/configure properties with my object. My object has an observable collection of a custom type (Parameter). The default editor is an expandable row for each item [0] Parameter 1, [1] Parameter 2, etc. Then I can expand the row to update the individual properties (Name, Status). My question is: Is it possible to set a custom editor to display the items in my collection in a datagrid instead of the default. I would like to have two columns Name and Status, the a row beneath for each item in the collection.
Jamie Godbout