如何在单个数据网格 Windows Forms .Net 中显示父子关系
我需要知道是否有一种方法可以在 Windows 窗体 .Net C# 中的单个数据网格中显示父子关系
I need to know is there a way to dispaly parent-child relation in a single datagrid in Windows Forms .Net C#
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
经过一番谷歌搜索后,我在 msdn 论坛上发现了一篇帖子,他们在其中寻找相同的功能。
基本上,您可以做的就是在数据网格的模板列中托管一个数据网格视图。
您可以在这里找到这篇文章: http://social.msdn.microsoft.com/Forums/en-US/winformsdatacontrols/thread/0a63a483-5b15-40d6-afb4-8add6b4f244f
After a little bit of googling I came up with a post on the msdn forums where they where looking for the same functionality.
Basically what you can do is host a datagridview inside a templatecolumn of your datagrid.
you can find this post here: http://social.msdn.microsoft.com/Forums/en-US/winformsdatacontrols/thread/0a63a483-5b15-40d6-afb4-8add6b4f244f
不在单个数据网格中 - 您需要使用嵌套的转发器/数据列表/列表视图,以便在绑定父行时绑定子行。
Not in a single datagrid - you need to use a nested repeater / datalist / listview in order to bind the child rows when the parent row is bound.