当前位置:  开发笔记 > 编程语言 > 正文

如何在没有任何数据源的情况下从DataGridView创建DataTable?

如何解决《如何在没有任何数据源的情况下从DataGridView创建DataTable?》经验,为你挑选了3个好方法。

我想从DataGridView获取Grid值的DataTable.

换句话说,DataTable与DataGridView值相同



1> Hans Olsson..:

可能是一个更好的方法,但否则只需循环遍历DGV并手动创建DataTable将是相当微不足道的.

像这样的东西可能会起作用:

DataTable dt = new DataTable();
foreach(DataGridViewColumn col in dgv.Columns)
{
   dt.Columns.Add(col.Name);    
}

foreach(DataGridViewRow row in dgv.Rows)
{
    DataRow dRow = dt.NewRow();
    foreach(DataGridViewCell cell in row.Cells)
    {
        dRow[cell.ColumnIndex] = cell.Value;
    }
    dt.Rows.Add(dRow);
}



2> 小智..:

您可以将DataSource对象从DataGridView转换为DataTable

DataTable dt = new DataTable();
dt = (DataTable)dataGridView1.DataSource;


应该注意的是,如果DataSource是BindingList ,这将不起作用,尽管我非常有希望.

3> 小智..:

您也可以使用以下代码,当您在数据表中添加或删除行时,此代码填充对DataGridView没有影响

DataTable dt = new DataTable();
dt = Ctype(dataGridView1.DataSource,DataTable).copy();

推荐阅读
个性2402852463
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有