C#将dataGridView中数据导入Excel
2021-01-23 23:15
标签:button header oid event new sof 生成 turn typeof //命令按钮点击触发事件 C#将dataGridView中数据导入Excel 标签:button header oid event new sof 生成 turn typeof 原文地址:https://www.cnblogs.com/zhujie-com/p/12065685.html
private void button2_Click(object sender, EventArgs e)
{
if (dataGridView1.Rows.Count==0) return;//判断是否有数据,没有就返加
Microsoft.Office.Interop.Excel.Application excel = new Microsoft.Office.Interop.Excel.Application();
excel.Application.Workbooks.Add(true);//在excel中添加一个工作薄
excel.Visible = true;//设置excel显示
//生成字段名称
for (int i = 0; i
{
excel.Cells[1, i + 1] = dataGridView1.Columns[i].HeaderText;//将数据表格控件中的列表头填充到excel中
}
//填充数据
for (int i = 0; i
{
for (int j = 0; j
{
if (dataGridView1[j,i].ValueType==typeof(string))//判断遍历到的数据是否是字符串类型
{
excel.Cells[i + 2, j + 1] = "‘" + dataGridView1[j ,i].Value.ToString();//填充到excel表格
}
else
{
excel.Cells[i + 2, j + 1] = dataGridView1[j, i].Value.ToString();//填充到excel表格
}
}
}
}
文章标题:C#将dataGridView中数据导入Excel
文章链接:http://soscw.com/index.php/essay/46080.html