Невозможно вставить новые строки в определенную позицию в DataGridView с помощью методов DataGridView.Rows.Insert или DataGridView.Rows.InsertCopy.
ErrorMessage: Rowsневозможно программно добавить в коллекцию строк DataGridView, когда элемент управления привязан к данным.
DataGridViewRow dgwr = new DataGridViewRow();
dgwr.CreateCells(myDataGridView);
myDataGridView.AllowUserToAddRows = true;
myDataGridView.AllowUserToDeleteRows = true;
myDataGridView.Rows.Insert(5, dgwr);
ИЛИ
myDataGridView.AllowUserToAddRows = true;
myDataGridView.AllowUserToDeleteRows = true;
myDataGridView.Rows.InsertCopy(5, 2);
введите описание изображения здесь