DTO 的 DataGridView 主从?
在我的 Windows 窗体应用程序中,我有两个代表主从关系的 DataGridView。 每个数据源都是一个数据传输对象,表示为 IList(of T)——因此 DataRelation 已经消失。 驱动主从网格的最佳方式是什么? .NET 中是否有内置方法可以执行此操作,或者当选定的主行更改时我是否必须编写自己的重新绑定?
In my Windows Forms app, I two DataGridViews that represent a Master-Detail relationship. The datasource for each is a Data Transfer Object, represented as an IList(of T) -- so DataRelation is out. What is the best way to drive the master-detail grids? Is there a built-in way to do this in .NET or do I have to write my own rebind when the selected master row changes?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
处理主网格上的 rowenter 事件。
手动填充详细信息网格或更新数据源并重新绑定。
Process the rowenter event on the master grid.
Populate the details grid manually or update the datasource and rebind.