At the moment of creating a row in a DataGridView I want the pointer to be in the new row created in the cell of the second column as I show in the imgagen.
Every time you create a new row, the cursor should be displayed in this way, ready to enter data.
I've tried this code but it does not do it like a real click
private void btnNuevoClasificacion_Click(object sender, EventArgs e)
{
if (dgvClasificacion.CurrentRow == null)
{
dgvClasificacion.DataSource = null;
dgvClasificacion.Rows.Add();
dgvClasificacion.CurrentRow.Cells[1].Selected = true;
}