获取类型的默认PropertyDescriptors

时间:2009-04-09 20:27:26

标签: c# propertygrid propertyinfo propertydescriptor

我正在通过实施PropertyGrid自定义ICustomTypeDescriptor中对象类型的显示方式。我允许用户创建自己的自定义属性,这些属性存储在单个键和值字典中。我能够为这些值创建所有PropertyDescriptors并在属性网格中查看它们。但是,我还想显示所有默认属性,如果通过反射而不是我的覆盖PropertyGrid方法填充ICustomTypeDescriptor.GetProperties,则会显示这些属性。

现在我知道如何获取对象的类型,然后GetProperties(),但这会返回PropertyInfo而不是ProperyDescriptor的数组。那么如何将该类型的PropertyInfo对象转换为PropertyDescriptor个对象,并将其包含到我的自定义PropertyDescriptors的集合中?

//gets the local intrinsic properties of the object
Type thisType = this.GetType();
PropertyInfo[] thisProps = thisType.GetProperties();

//this line obviously doesn't work because the propertydescriptor 
//collection needs an array of PropertyDescriptors not PropertyInfo
PropertyDescriptorCollection propCOl = 
    new PropertyDescriptorCollection(thisProps);

1 个答案:

答案 0 :(得分:15)

PropertyDescriptorCollection props = TypeDescriptor.GetProperties(thisType);

暂且不说:这不包括您的ICustomTypeDescriptor自定义,但包含通过TypeDescriptionProvider进行的任何自定义。

(编辑) 除了第二个 - 您还可以通过提供PropertyGrid来调整TypeConverter - 比ICustomTypeDescriptorTypeDescriptionProvider简单得多 - 例如:

[TypeConverter(typeof(FooConverter))]
class Foo { }

class FooConverter : ExpandableObjectConverter
{
    public override PropertyDescriptorCollection GetProperties(
       ITypeDescriptorContext context, object value, Attribute[] attributes)
    {
        // your code here, perhaps using base.GetPoperties(
        //    context, value, attributes);
    }
}