newRow.CreateCells(dgv); newRow.Cells[0].Value = dgv.Rows.Count + 1; // 序号为当前行数加一 newRow.Cells[1].Value = barcode; newRow.Cells[2].Value = time; newRow.Cells[3].Value = "不良品"; newRow.Cells[4].Value = "已点检";Cells一列颜色变绿
时间: 2024-02-14 10:06:21 浏览: 192
SQL TO EXCEL.zip_SQL To Excel_dgv数据库_dgv转换为excel_involvednj2_数据库
您需要使用`DefaultCellStyle`属性来设置单元格的样式,以更改单元格的背景颜色为绿色。可以使用以下代码:
```
newRow.CreateCells(dgv);
newRow.Cells[0].Value = dgv.Rows.Count + 1;
newRow.Cells[1].Value = barcode;
newRow.Cells[2].Value = time;
newRow.Cells[3].Value = "不良品";
newRow.Cells[4].Value = "已点检";
newRow.Cells[4].Style.BackColor = Color.Green; // 将第五列单元格背景颜色设置为绿色
```
这样,第五列的单元格背景颜色就会被设置为绿色。
阅读全文