Методы DataGridView.Rows.Insert или DataGridView.Rows.InsertCopy не работают. - PullRequest
0 голосов
/ 23 марта 2019

Невозможно вставить новые строки в определенную позицию в 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);

введите описание изображения здесь

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...