I am learning Windows Visual C# so I am new to this. I have this code for the cell click event for my DataGridView
private void dataGridView1_CellClick(object sender, DataGridViewCellEventArgs e)
{
con. ID = Convert.ToInt32(dataGridView1.Rows[e.RowIndex].Cells[0].Value.ToString());
txtname.Text = dataGridView1.Rows[e.RowIndex].Cells[1].Value.ToString();
txtlname.Text = dataGridView1.Rows[e.RowIndex].Cells[2].Value.ToString();
}
The question is: Even how many times I click my DataGridView it's not firing my breakpoint. How to solve this?



this.dataGridView1.CellClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dataGridView1_CellClick);.