.NET PropertyGrid:当值为空时创建可扩展项目

发布于 2024-09-06 17:05:46 字数 382 浏览 3 评论 0原文

我有一些公共属性的类(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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

泪是无色的血 2024-09-13 17:05:46

为此,您需要一个自定义类型转换器。

You would need a custom type converter for that.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文