I have a DataGridView binded to a DataTable (DataTable binded to database). I need to add a DataRow to the DataTable. I’m trying to use the following code:
dataGridViewPersons.BindingContext[table].EndCurrentEdit();
DataRow row = table.NewRow();
for (int i = 0; i < 28; i++)
{
row[i] = i.ToString();
}
But it doesn’t work, DataGridView has never been added a new row. Please, tell me, how can I fix my code?
Thank you in advance.
You can try with this code – based on
Rows.Add methodReference: https://learn.microsoft.com/dotnet/api/system.data.datarowcollection.add?view=net-5.0#System_Data_DataRowCollection_Add_System_Data_DataRow_