winforms 属性网格

发布于 2024-08-18 04:31:24 字数 228 浏览 3 评论 0原文

我是 DOT.NET 的新手...

我正在尝试这样做: 使用讲座树构建 winform 下面我放了一个propertyGrid 属性网格必须显示讲座的详细信息:主题、语言和讲师。 我想将讲师添加到集合编辑器中的某些讲座“Lectors Collection”属性问题

: 我需要在新讲师的构造函数中传递 LectureID 参数,用于将新添加的讲师记录(在当前讲座的讲师集合中)连接到他的讲座。 我该怎么做?

I'm new with DOT.NET...

I'm trying to do:
Build a winform with tree of lectures
below i put a propertyGrid
The propertyGrid must display the details of Lecture:The Subject,language ang Lectors.
I want to add lectors to certain lecture "Lectors Collection" property in collection editor

Question:
I need the LectureID parameter to be passed in the constructor of new Lector, for connecting the newly added lector record (in lectors collection of current Lecture) to his lecture.
How can i do this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

Saygoodbye 2024-08-25 04:31:24

您必须编写一个 TypeConverter,以便可以重写其 CreateInstance() 方法。 PropertyGrid 是简单类的快速解决方案,但很快就会变得很尴尬。考虑一下它可能不是最好的 UI 解决方案。 DataGridView 非常适合编辑集合。

You'll have to write a TypeConverter so you can override its CreateInstance() method. PropertyGrid is a quick solution for simple classes but gets awkward in a hurry. Consider that it might not be the best UI solution. DataGridView is well suited to editing collections.

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