UserControl无效.resx文件无法加载类型-需要设计时支持
本文关键字:支持 类型 resx 无效 文件 加载 UserControl | 更新日期: 2023-09-27 18:00:06
我要做的事情:
我正在创建一个自定义控件,它将按照ListView(组和项)的方式工作。
控件具有组,组具有项,因此可以先创建一个组,然后将一个或多个项添加到该组(在该组属性下)。
问题:
当我试图构建我的项目时,我遇到了这个错误:
Resx文件无效。
无法加载类型Widget。ListCategory,Widget,Version=1.0.0.0,Culture=neutral,PublicKeyToken=null,在中使用。RESX文件。
确保已将必要的引用添加到项目中。第186行,位置5。小工具C:''Users''mb。ITHOZTING '' Dropbox '' Widget '' Widget ''Form1.resx 186
尝试修复项目:
我试过很多不同的东西,所以请原谅,我记不清了,但这些都是我记得的:
-
我曾经尝试过实现ISerializer接口,但在我的记忆中没有做任何事情。
-
我已尝试删除中生成的代码。Resx文件,然后重新配置控件。没有帮助。
- 我尝试过用不同的标签标记不同的属性和类,例如[Serializable]
代码
这是错误消息的罪魁祸首:
[Serializable]
class ListCategory : ListItemBase
{
#region Properties
private List<ListItem> items = new List<ListItem>();
[DesignerSerializationVisibility(DesignerSerializationVisibility.Content)]
[Editor(typeof(ListItemCollectionEditor), typeof(System.Drawing.Design.UITypeEditor))]
public List<ListItem> Items
{
get { return items; }
set { items = value; }
}
#endregion
}
现在有相当多的文件和大量的代码,下面是整个项目:https://www.dropbox.com/sh/zwz72dqm7vii78v/AACLjpy2DYZyQPxP_BBf0WTQa?dl=0
我应该采取什么措施来解决这个问题?
我可能已经找到了解决方案,但我不能100%确定,因为我觉得它有点不稳定(不是解决方案,而是问题),所以我还不会将其标记为答案。
不过,我必须做的是为每个给我带来问题的类添加一个TypeConverter。
例如,第一个是ListCategory,然后其他类开始出现问题,然后我只需要遵循相同的过程,直到它起作用。
我将两篇关于提供丰富的设计时支持的不同文章中的TypeConverter混合在一起。
这些是链接:
- http://www.codeproject.com/Articles/9667/Creating-Custom-Controls-Providing-Design-Time-Sup
- http://www.codeproject.com/Articles/5502/Creating-Collection-Based-Controls-with-Rich-Desig
这就是生成的TypeConverter:
class GroupListConverter : TypeConverter
{
public override PropertyDescriptorCollection GetProperties(ITypeDescriptorContext context, object value, Attribute[] attributes)
{
return TypeDescriptor.GetProperties(typeof(GroupList));
}
public override bool CanConvertTo(ITypeDescriptorContext context, Type destType)
{
if (destType == typeof(InstanceDescriptor))
return true;
return base.CanConvertTo(context, destType);
}
public override object ConvertTo(ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, Type destType)
{
if (destType == typeof(InstanceDescriptor))
{
System.Reflection.ConstructorInfo ci = typeof(GroupList).GetConstructor(System.Type.EmptyTypes);
return new InstanceDescriptor(ci, null, false);
}
return base.ConvertTo(context, culture, value, destType);
}
}