C# datagridview中怎样改变某个单元格的边框

2024-11-27 08:33:21
推荐回答(1个)
回答1:

DataGridViewCellStyle style = new DataGridViewCellStyle();
style.ForeColor = Color.Red;
gridview.Rows[0].Cells[0].Style = style;

我看了一下,单元格的边框样式不能设定,上面的代码是设置单元格的文字颜色的。
不知道对你是否有帮助。