1. 程式人生 > >獲取DataGridView上選中的一行並轉換為一個DataRow類型

獲取DataGridView上選中的一行並轉換為一個DataRow類型

sele 復制 avi .data tag 一行 row bound tro

ataGridViewRow gridrow = dataGridView1.SelectedRows[0];

DataRowView row_view = (DataRowView)gridrow.DataBoundItem;


DataTable dt = row_view.DataView.Table.Clone();//克隆DataTable結構
dt.ImportRow(row_view.Row);//復制目標DataRow數據到新建的DataTable中

獲取DataGridView上選中的一行並轉換為一個DataRow類型