要使用DataGridView獲取某行某列的值,可以通過(guò)以下步驟實(shí)現(xiàn):
int rowIndex = dataGridView.SelectedCells[0].RowIndex;
int columnIndex = dataGridView.Columns["ColumnName"].Index;
DataGridViewCell cell = dataGridView.Rows[rowIndex].Cells[columnIndex];
string value = cell.Value.ToString();
完整的代碼示例:
int rowIndex = dataGridView.SelectedCells[0].RowIndex;
int columnIndex = dataGridView.Columns["ColumnName"].Index;
DataGridViewCell cell = dataGridView.Rows[rowIndex].Cells[columnIndex];
string value = cell.Value.ToString();
注意:如果你想要獲取的列的名稱是已知的,也可以直接使用列的名稱來(lái)獲取列的索引,而不是通過(guò)列的Index屬性來(lái)獲取。