博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
设置dataGridView单元格颜色、字体、ToolTip、字体颜色
阅读量:5272 次
发布时间:2019-06-14

本文共 428 字,大约阅读时间需要 1 分钟。

this.dataGridView3.Rows[e.RowIndex].Cells["你的那个要判断的列名"].Style.BackColor = Color.MediumPurple;  dataGridView1.Rows[r].Cells[e.ColumnIndex].Style.Font = new Font("宋体", 12, FontStyle.Underline); dataGridView1.Rows[r].Cells[e.ColumnIndex].Style.ForeColor =Color.Blue; dataGridView1.Rows[r].Cells[e.ColumnIndex].ToolTipText = string.Format("我是第{0}行,第{1}列的单元格", r, e.ColumnIndex);

转载于:https://www.cnblogs.com/lanyubaicl/p/5755441.html

你可能感兴趣的文章