
I am currently evaluation your PropertyGrid.
One thing that is not described satisfactory in your sample-application is how selfwritten Custom Editors can be integrated.
The only example I could find is the "Property Editors Quick Start" example.
It is not targeting, that you define all the properties you want to display statically in XAML, and define one editor for each of those properties right where those properties are defined themselfs. (Who will ever use a propertyGrid in such a way?)
I have several properties that have classes as parameters. ( public MyClass MyProperty { get; set; } )
What I need is an editor that is described in XAML in form of a Datatemplate, and that is used whenever a property of a certain type (MyClass) is displayed in the grid. (Maybe together with a hint in form of some EditorAttribute on top of the property)
What I need in addition is information on how to bind the Datatemplate-Editor to properties of MyClass and how to bring up a dialog for advanced editing of MyClass.
Is there any sample that shows things like that? Is there any sample that shows how selfwritten custom editors are linked to properties dynamically?
Every hint on that issue is appreciated!
Greetings,