设置datagridview中某个单元格背景颜色的问题
stringaa="否";inti=0;while(i<this.dataGridView3.Rows.Count){if(aa==this.dataGridView3....
string aa = "否";
int i = 0;
while (i < this.dataGridView3.Rows.Count)
{
if (aa == this.dataGridView3.Rows[i].Cells[1].Value.ToString())
{
this.dataGridView3.Rows[i].Cells[1].Style.BackColor = Color.MediumPurple;
}
i++;
}
本意是想将datagridview中每行的第二单元格内容为否的 单元更改背景颜色,可是没有效果 请求大家帮助 展开
int i = 0;
while (i < this.dataGridView3.Rows.Count)
{
if (aa == this.dataGridView3.Rows[i].Cells[1].Value.ToString())
{
this.dataGridView3.Rows[i].Cells[1].Style.BackColor = Color.MediumPurple;
}
i++;
}
本意是想将datagridview中每行的第二单元格内容为否的 单元更改背景颜色,可是没有效果 请求大家帮助 展开
展开全部
1、首先需要在窗体中拖入一个DataGridView控件。
2、然后在DataGridView控件上右键点击属性可以打开属性界面,属性界面中有AlternatingRowsDefaultCellstyle和DefaultCellStyle两个属性可以调节列表的样式。
3、其中AlternatingRowsDefaultCellstyle的优先级高于DefaultCellStyle,前者控制奇数索引的列表行样式,后者控制整体列表的样式。其中有五项可以调节,分别为:表格背景、字体、字体颜色、选中时的背景颜色、选中时的字体颜色。
4、由于其中AlternatingRowsDefaultCellstyle的优先级高于DefaultCellStyle,所以索引为奇数的行(图中的第2、4、6行)样式为AlternatingRowsDefaultCellstyle中设置的样式,其他未设置的样式遵循DefaultCellStyle的设置。
展开全部
在DataGridView 的 RowPrePaint 事件里设置:
private void dataGridView3_RowPrePaint(object sender, DataGridViewRowPrePaintEventArgs e)
{
if (“否” == this.dataGridView3.Rows[e.RowIndex].Cells["你的那个要判断的列名"].Value.ToString())
{
this.dataGridView3.Rows[e.RowIndex].Cells["你的那个要判断的列名"].Style.BackColor = Color.MediumPurple;
}
}
private void dataGridView3_RowPrePaint(object sender, DataGridViewRowPrePaintEventArgs e)
{
if (“否” == this.dataGridView3.Rows[e.RowIndex].Cells["你的那个要判断的列名"].Value.ToString())
{
this.dataGridView3.Rows[e.RowIndex].Cells["你的那个要判断的列名"].Style.BackColor = Color.MediumPurple;
}
}
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
可能是你的条件出错了,我用的都没错,可以设置颜色
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询
广告 您可能关注的内容 |