.NET PropertyGrid:当值为空时创建可扩展项目
我有一些公共属性的类(ClassA)。其中一个属性 (ClassBValue) 属于类类型 (ClassB),它也具有一些公共属性。现在我想在 PropertyGrid 中显示 ClassA 对象。 我使用
[TypeConverter(typeof(ExpandableObjectConverter))]
ClassA 的 ClassB 属性的属性。
问题是,当 ClassBValue 属性显示在 PropertyGrid 中时,该属性为 null
。如何使用户能够在 PropertyGrid 中创建 ClassB 对象?
用户应该能够为 ClassBValue 设置值并编辑子属性,还可以删除该值(将其设置为 null)。
I have class (ClassA) with some public properties. One of the properties (ClassBValue) is of a class type (ClassB) which has some public properties, too. Now I want to show ClassA objects in a PropertyGrid.
I use the
[TypeConverter(typeof(ExpandableObjectConverter))]
Attribute for the ClassB property of ClassA.
The problem is, that the ClassBValue property is null
when it is shown in the PropertyGrid. How can I enable the user to create a ClassB object within the PropertyGrid?
The user should be able to set a value for the ClassBValue and edit the sub-properties and also to delete the value (set it to null).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
为此,您需要一个自定义类型转换器。
You would need a custom type converter for that.