winform中如何设置datagridview背景颜色是海军蓝。
时间: 2024-06-08 12:05:34 浏览: 53
适时改变Winform窗体的背景色,VC++代码
您可以使用以下代码来设置DataGridView的背景颜色为海军蓝:
```csharp
dataGridView1.BackgroundColor = Color.Navy;
```
或者,如果您只想更改单元格的背景颜色而不是整个DataGridView的背景颜色,可以在CellFormatting事件中添加以下代码:
```csharp
private void dataGridView1_CellFormatting(object sender, DataGridViewCellFormattingEventArgs e)
{
if (e.RowIndex >= 0 && e.ColumnIndex >= 0)
{
dataGridView1.Rows[e.RowIndex].Cells[e.ColumnIndex].Style.BackColor = Color.Navy;
}
}
```
这将使每个单元格的背景颜色都变为海军蓝。
阅读全文