winform datagridview_cellclick事件

单击某单元格,该单元格变成红色,再次单击它又回复为系统默认。我的代码逻辑有问题,该怎么改?boolflag=false;privatevoiddataGridView1_... 单击某单元格,该单元格变成红色,再次单击它又回复为系统默认。
我的代码逻辑有问题,该怎么改?
bool flag = false;
private void dataGridView1_CellClick(object sender, DataGridViewCellEventArgs e)
{
for (int j = 4; j < this.dataGridView1.ColumnCount; j++)
{
if (e.ColumnIndex == this.dataGridView1.Columns[j].Index)
{
this.navigatorEx1.Focus();
if (flag)
{
for (int i = 0; i < this.dataGridView1.Rows.Count; i++)
{
if (e.RowIndex == this.dataGridView1.Rows[i].Index)
{
this.dataGridView1.Rows[i].Cells[j].Style.BackColor = Color.Red;
}
}
}
else
{
for (int i = 0; i < this.dataGridView1.Rows.Count; i++)
{
if (e.RowIndex == this.dataGridView1.Rows[i].Index)
{
this.dataGridView1.Rows[i].Cells[j].Style.BackColor = Color.Empty;
}
}
}
}
flag = !flag;
}

}
展开
 我来答
Lastoco
2014-04-30 · TA获得超过121个赞
知道小有建树答主
回答量:312
采纳率:100%
帮助的人:221万
展开全部

楼主用这句代码:

 DataGridView1 .Rows[e.RowIndex].Cells[e.ColumnIndex].Style.BackColor = Color.Red;
学派
2014-04-30 · TA获得超过446个赞
知道小有建树答主
回答量:465
采纳率:100%
帮助的人:258万
展开全部
CurrentCell找不到当前单元格吗?
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 1条折叠回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式