How to add a new row to datagridview programmatically

前端 未结 18 2027
滥情空心
滥情空心 2020-11-22 09:40

if add row to DataTable

DataRow row = datatable1.NewRow();
row[\"column2\"]=\"column2\";
row[\"column6\"]=\"column6\";
datatable1.Rows.Add(row);         


        
18条回答
  •  刺人心
    刺人心 (楼主)
    2020-11-22 10:04

    If the grid is bound against a DataSet / table its better to use a BindingSource like

    var bindingSource = new BindingSource();
    bindingSource.DataSource = dataTable;
    grid.DataSource = bindingSource;
    
    //Add data to dataTable and then call
    
    bindingSource.ResetBindings(false)    
    

提交回复
热议问题