Untitled

mail@pastecode.io avatar
unknown
plain_text
2 years ago
622 B
2
Indexable
Never
private void dataGridView1_CellClick(object sender, DataGridViewCellEventArgs e)
{
//MessageBox.Show("Tıklandı");
//MessageBox.Show(e.RowIndex.ToString());// dataGridViewde hangi kaydın
seçili olduğunu bulmak için kullanılır.
// MessageBox.Show(dataGridView1.Rows[e.RowIndex].Cells[3].Value.ToString());
textAd.Text = dataGridView1.Rows[e.RowIndex].Cells[1].Value.ToString();
textSoyad.Text = dataGridView1.Rows[e.RowIndex].Cells[2].Value.ToString();
textNumara.Text =
dataGridView1.Rows[e.RowIndex].Cells[3].Value.ToString();
textSinif.Text = dataGridView1.Rows[e.RowIndex].Cells[4].Value.ToString();
}