将包含属性的上下文传递给TypeConverter
我正在寻找一种将附加信息传递给TypeConverter
,以便在不创建自定义构造函数的情况下为转换提供一些上下文。
传递的额外信息将是原始对象(在编译时已知为接口),其中包含我正在转换的属性。 它包含像Id
一样的属性,对于查找转换相关信息非常有用。
我查看了ITypeDescriptorContext的文档,但是我没有找到如何实现该界面的清晰示例。 我也不相信这是我需要的工具。
目前,在我的代码中,我打电话给:
// For each writeable property in my output class.
// If property has TypeConverterAttribute
var converted = converter.ConvertFrom(propertyFromOriginalObject)
propertyInfo.SetValue(output, converted, null);
我想要做的是类似的事情。
// Original object is an interface at compile time.
var mayNewValue = converter.ConvertFrom(originalObject, propertyFromOriginalObject)
我希望能够使用重载之一来做我所需要的,以便任何自定义转换器可以继承自TypeConverter
而不是具有自定义构造函数的基类,因为这样可以使依赖注入变得更轻松,并使用DependencyResolver.Current.GetService(type)
从MVC DependencyResolver.Current.GetService(type)
以初始化我的转换器。
有任何想法吗?
你想要使用的方法显然是这种重载:TypeConverter.ConvertFrom方法(ITypeDescriptorContext,CultureInfo,Object)
它将允许您传递一个非常通用的上下文。 Instance
属性表示您正在处理的对象实例, PropertyDescriptor
属性表示正在转换的属性值的属性定义。
例如,Winforms属性网格就是这样做的。
所以,你必须提供你自己的上下文。 这里是一个例子:
public class MyContext : ITypeDescriptorContext
{
public MyContext(object instance, string propertyName)
{
Instance = instance;
PropertyDescriptor = TypeDescriptor.GetProperties(instance)[propertyName];
}
public object Instance { get; private set; }
public PropertyDescriptor PropertyDescriptor { get; private set; }
public IContainer Container { get; private set; }
public void OnComponentChanged()
{
}
public bool OnComponentChanging()
{
return true;
}
public object GetService(Type serviceType)
{
return null;
}
}
因此,让我们考虑一个自定义转换器,因为您会发现它可以使用一行代码获取现有对象的属性值(请注意,此代码与标准现有ITypeDescriptorContext(如属性网格1)兼容,但在实际情况中,您必须检查上下文为无效):
public class MyTypeConverter : TypeConverter
{
public override object ConvertFrom(ITypeDescriptorContext context, CultureInfo culture, object value)
{
// get existing value
object existingPropertyValue = context.PropertyDescriptor.GetValue(context.Instance);
// do something useful here
...
}
}
现在,如果您修改了此自定义对象:
public class MySampleObject
{
public MySampleObject()
{
MySampleProp = "hello world";
}
public string MySampleProp { get; set; }
}
你可以这样调用转换器:
MyTypeConverter tc = new MyTypeConverter();
object newValue = tc.ConvertFrom(new MyContext(new MySampleObject(), "MySampleProp"), null, "whatever");
链接地址: http://www.djcxy.com/p/84017.html
上一篇: Passing a context containing properties to a TypeConverter
下一篇: c++