我继承了PropertyDescriptor
类,以提供一种“动态”属性。我正在向PropertyDescriptor添加一些属性。这非常有效。
在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等?
答案 0 :(得分:2)
通过一些快速测试,名称需要非常合格:
const string name = "System.ComponentModel.Design.MultilineStringEditor, System.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a";
attribs.Add(new EditorAttribute(name, typeof(UITypeEditor)));
在内部,它使用Type.GetType
和:
var type1 = Type.GetType("System.ComponentModel.Design.MultilineStringEditor, System.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a");
// ^^^ not null
var type2 = Type.GetType("System.ComponentModel.Design.MultilineStringEditor, System.Design");
// ^^^ null
当然,您可以使用:
attribs.Add(new EditorAttribute(typeof(MultilineStringEditor), typeof(UITypeEditor)));
或者,你可以override GetEditor
做任何你想做的事。