DataRow row = ((DataRowView)DataGridViewRow.DataBoundItem).Row
Assuming you bound a regular DataTable .
MyTypedDataRow row = (MyTypedDataRow)((DataRowView)DataGridViewRow.DataBoundItem).Row
Assuming you bound a typed data type.
See the article on MSDN for more information.
source share