Hola que tal, justamente acabo de hacer algo asi
Bueno si vas a eliminar un renglon de un grid es con esto:
this.Grid.Rows.RemoveAt(Grid.CurrentRow.Index);
Esto lo hice en el KeyPress al momento de seleccionar la tecla Sup
if (e.KeyCode == Keys.Delete)
{
if (Grid.CurrentRow.Index > 0)
{this.Grid.Rows.RemoveAt(Grid.CurrentRow.Index);
}
}
Espero te sirva