在C#中,可以使用DataGridView的Rows和Columns屬性來獲取指定行和列的值。
首先,使用Rows屬性獲取指定行的DataGridViewRow對象,然后使用Cells屬性獲取該行中指定列的DataGridViewCell對象,最后使用Value屬性獲取該單元格的值。
以下是一個示例代碼,演示如何獲取第2行第3列的值:
// 獲取第2行第3列的值
var value = dataGridView1.Rows[1].Cells[2].Value;
// 將值轉換成字符串
string strValue = value.ToString();
需要注意的是,行和列的索引都是從0開始的。在示例代碼中,我們使用[1]獲取第2行,使用[2]獲取第3列的值。
另外,還可以根據DataGridView的列名來獲取某行某列的值。可以使用Columns屬性來獲取指定列的DataGridViewColumn對象,然后使用Index屬性獲取該列的索引,最后使用Cells屬性獲取指定行該列的DataGridViewCell對象。
以下是一個示例代碼,演示如何根據列名獲取第1行“列名”列的值:
// 獲取第1行“列名”列的值
var columnName = "列名";
var columnIndex = dataGridView1.Columns[columnName].Index;
var value = dataGridView1.Rows[0].Cells[columnIndex].Value;
// 將值轉換成字符串
string strValue = value.ToString();
在示例代碼中,我們首先使用Columns屬性獲取“列名”列的DataGridViewColumn對象,然后使用Index屬性獲取該列的索引,最后使用Cells屬性獲取第1行該列的DataGridViewCell對象。