Add a row to the datatable, the datagridview will update automatically:
DataTable dt = myDataGridView.DataSource as DataTable;
//Create the new row
DataRow row = dt.NewRow();
//Populate the row with data
//Add the row to data table
dt.Rows.Add(row);
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…