I have a problem with the RadPropertyGrid of WPF Q3 2013, in .Net 4.0.
I'm trying to do a binding to a "Value" property of my data object "arg"
propDef = new PropertyDefinition()
{
DisplayName = arg.Name.Value,
Description = arg.Description.Value,
Binding = new Binding()
{
Source = arg,
Path = new PropertyPath("Value", null)
},
EditorTemplate = this.argTemplateSelector.SelectTemplate(arg, this.PropertyGrid)
}
but when the PropertyGrid is rendered on the screen I get an AmbiguousMatchException.
I'm trying to do a binding to a "Value" property of my data object "arg"
propDef = new PropertyDefinition()
{
DisplayName = arg.Name.Value,
Description = arg.Description.Value,
Binding = new Binding()
{
Source = arg,
Path = new PropertyPath("Value", null)
},
EditorTemplate = this.argTemplateSelector.SelectTemplate(arg, this.PropertyGrid)
}
but when the PropertyGrid is rendered on the screen I get an AmbiguousMatchException.