C# DataGridView控件選中行獲取其值

DataGridView的幾個基本操做:
一、得到某個(指定的)單元格的值:
dataGridView1.Row[i].Cells[j].Value;
二、得到選中的總行數:
dataGridView1.SelectedRows.Count;
三、得到當前選中行的索引:
dataGridView1.CurrentRow.Index;
四、得到當前選中單元格的值:
dataGridView1.CurrentCell.Value;
五、取選中行的數據
string[] str = new string[dataGridView.Rows.Count];
for(int i;i<dataGridView1.Rows.Count;i++)
{
if(dataGridView1.Rows[i].Selected == true)
{
str[i] = dataGridView1.Rows[i].Cells[1].Value.ToString();
}
}
七、獲取選中行的某個數據
int a = dataGridView1.SelectedRows.Index;
dataGridView1.Rows[a].Cells[「你想要的某一列的索引,想要幾就寫幾」].Value;索引

得到某個(指定的)單元格的值: dataGridView1.Row[i].Cells[j].Value; Row[i] 應該是Rows[i]string

int a=dataGridView1.CurrentRow.Index;
string str=dataGridView1.Row[a].Cells[「strName」].Value.Tostring();class

selectedRows[0]當前選中的行
.cell[列索引].values 就是當前選中行的某個單元格的值select

DataGridView1.SelectedCells(0).Value.ToString 取當前選擇單元內容
DataGridView1.Rows(e.RowIndex).Cells(2).Value.ToString 當前選擇單元第N列內容數據

相關文章
相關標籤/搜索