C# datagridview中怎样改变某个单元格的边框
答案:2 悬赏:50 手机版
解决时间 2021-02-18 16:24
- 提问者网友:你挡着我发光了
- 2021-02-18 10:36
C# datagridview中怎样改变某个单元格的边框
最佳答案
- 五星知识达人网友:动情书生
- 2021-02-18 11:41
DataGridViewCellStyle style = new DataGridViewCellStyle();
style.ForeColor = Color.Red;
gridview.Rows[0].Cells[0].Style = style;
我看了一下,单元格的边框样式不能设定,上面的代码是设置单元格的文字颜色的。
不知道对你是否有帮助。
style.ForeColor = Color.Red;
gridview.Rows[0].Cells[0].Style = style;
我看了一下,单元格的边框样式不能设定,上面的代码是设置单元格的文字颜色的。
不知道对你是否有帮助。
全部回答
- 1楼网友:往事隔山水
- 2021-02-18 12:28
private void datagridview1_cellmouseenter(object sender, datagridviewcelleventargs e)
{
if (e.columnindex >= 0 && e.rowindex >= 0)
{
datagridview dgv = (datagridview)sender;
dgv[e.columnindex, e.rowindex].style.backcolor = color.red;
dgv[e.columnindex, e.rowindex].style.selectionbackcolor = color.red;
}
}
我要举报
如以上回答内容为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
点此我要举报以上问答信息
大家都在看
推荐资讯