Populate datagridView
like this:
dgvProdutosErp.DataSource = produtos; // produtos é uma lista
I try to remove it as follows:
foreach (DataGridViewRow row in dgvProdutosErp.Rows)
{
dgvProdutosErp.Rows.RemoveAt(row.Index);
}
The following error occurs:
You can not programmatically remove rows unless the DataGridView is bound to data in an IBindingList that supports change notification and allows deletion.