You can do so in the following way:
gv_AddFiles.DataSource = dt;
gv_AddFiles.Columns[0].HeaderText = "Remaining files";
gv_AddFiles.DataBind();
Here gv_AddFiles is the id of a datagrid and dt is the datatable to which the datagrid is going to be bound to.