我正在学习Windows Visual C#
所以我是新手。我有这个代码用于我的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();
}
问题是:即使我点击我的DataGridView多少次它没有触发我的断点。怎么解决这个问题?