0
請問如何在標籤或文本框中顯示數據網格視圖的行號,以便能夠在更新或刪除表中使用它。使用datagridview更新表
我嘗試以下,但是當我在數據網格單擊它什麼也不顯示視圖細胞
private void dataGridView1_CellContentClick(object sender, DataGridViewCellEventArgs e)
{
int rowIndex = e.RowIndex;
DataGridViewRow row = dataGridView1.Rows[rowIndex];
textBox9.Text = dataGridView1.Rows[0].Cells[1].Value.ToString();
}
你能在SQL中使用序列指令來自動生成連續的行號?只是好奇。 –