要使用DataGridView獲取某行某列的值,可以通過以下步驟實現:
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();
注意:如果你想要獲取的列的名稱是已知的,也可以直接使用列的名稱來獲取列的索引,而不是通過列的Index屬性來獲取。