Hi!
DescriptorPropertyDefinition.CreateAttributeEditor() has that code:
Type type = Type.GetType(editorAttribute.EditorTypeName)
I cant use any Editor from my plugins so you should use overload with assemblyResolver function.
This fix has helped me:
Type type = Type.GetType(editorAttribute.EditorTypeName,
(name) => { return AppDomain.CurrentDomain.GetAssemblies().Where(l => l.FullName == name.FullName).FirstOrDefault(); }, null, true);
Comments: ** Comment from web user: BoucherS **
DescriptorPropertyDefinition.CreateAttributeEditor() has that code:
Type type = Type.GetType(editorAttribute.EditorTypeName)
I cant use any Editor from my plugins so you should use overload with assemblyResolver function.
This fix has helped me:
Type type = Type.GetType(editorAttribute.EditorTypeName,
(name) => { return AppDomain.CurrentDomain.GetAssemblies().Where(l => l.FullName == name.FullName).FirstOrDefault(); }, null, true);
Comments: ** Comment from web user: BoucherS **
Hi,
This will be included in v3.2.
Thanks !