[TypeConverter(typeof(HumanTypeConvert))]
public class model
{
public string id { get; set; }
public model Name { get; set; }
}
public class HumanTypeConvert : TypeConverter
{
public override object ConvertFrom(ITypeDescriptorContext context, CultureInfo culture, object value)
{
if (value is string)
{
model h = new model();
h.id = value as string;
return h;
}
return base.ConvertFrom(context, culture, value);
}
}
WPF之类型转换器
转载本文章为转载内容,我们尊重原作者对文章享有的著作权。如有内容错误或侵权问题,欢迎原作者联系我们进行内容更正或删除文章。
提问和评论都可以,用心的回复会被更多人看到
评论
发布评论
相关文章
-
WPF 转换器理解与用法
前两天文章中用到了转换器,有小伙伴问我,转换器怎么写,今天就来说一说,wpf中的转换器。wpf系统自带了默认
xml microsoft string类 h5 显示图片