当前位置:  开发笔记 > 编程语言 > 正文

如何从DataGridView中的行获取DataRow

如何解决《如何从DataGridView中的行获取DataRow》经验,为你挑选了2个好方法。

我正在使用数据绑定Windows窗体DataGridView.如何从用户选择的行走在DataGridViewDataRowDataTable是它的来源?



1> Neil Barnwel..:
DataRow row = ((DataRowView)DataGridViewRow.DataBoundItem).Row

假设你已经束缚了普通人DataTable.

MyTypedDataRow row = (MyTypedDataRow)((DataRowView)DataGridViewRow.DataBoundItem).Row

假设你绑定了一个类型化的数据表.

有关更多信息,请参阅MSDN上的文章.


可爱的方案!像魅力一样,我用这种方式:((dgvAttached.SelectedCells [0] .OwningRow.DataBoundItem as DataRowView).Row as DataRow)

2> Lev Z..:
DataTable table = grdMyGrid.DataSource as DataTable;
DataRow row = table.NewRow();
row = ((DataRowView)grdMyGrid.SelectedRows[0].DataBoundItem).Row;

推荐阅读
可爱的天使keven_464
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有