我继承了PropertyDescriptor
该类以提供某种“动态”属性。我正在向 PropertyDescriptor 添加一些属性。这完美地工作。
在 a 中显示对象时PropertyGrid
,ReadOnlyAttribute
可以工作,但EditorAttribute
不工作!
internal class ParameterDescriptor: PropertyDescriptor {
//...
public ParameterDescriptor(/* ... */) {
List<Attribute> a = new List<Attribute>();
string editor = "System.ComponentModel.Design.MultilineStringEditor,System.Design";
//...
a.Add(new ReadOnlyAttribute(true)); // works
a.Add(new DescriptionAttribute("text")); // works
a.Add(new EditorAttribute(editor, typeof(UITypeEditor))); // doesn't work!
//...
this.AttributeArray = a.ToArray();
}
}
显示的对象使用继承的TypeConverter
:
public class ParameterBoxTypeConverter: TypeConverter {
public override bool GetPropertiesSupported(ITypeDescriptorContext context) {
return true;
}
public override PropertyDescriptorCollection GetProperties(ITypeDescriptorContext context, object value, Attribute[] attributes) {
List<PropertyDescriptor> desc = new List<PropertyDescriptor>();
//...
ParameterDescriptor d = new ParameterDescriptor(/* ... */);
desc.Add(d);
//....
return new PropertyDescriptorCollection(desc.ToArray());
}
我被困住了,因为PropertyGrid
根本没有显示任何东西(我希望属性值有一个“...”)。而且似乎没有办法调试!
那么我怎样才能找到这里有什么问题呢?
有没有办法调试到 PropertyGrid 等?