I am converting a .NET WinForms application to WPF. I purchased the Actipro WPF PropertyGrid to replace the .NET WinForms PropertyGrid. I use custom type converters on my objects that I display in the PropertyGrid. These work with the .NET WinForms PropertyGrid.
When I set the SelectedObject on the WPF PropertyGrid, none of the methods of the TypeConverter are called. I have overridden GetPropertiesSupported, GetProperties, GetCreateInstanceSupported, CreateInstance, CanConvertFrom and ConvertFrom. None of them are called. What am I doing wrong?