winforms 属性网格
我是 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您必须编写一个 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.