本文介绍了我需要变色datagridview的帮助的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
在我的程序中,我想根据运行时的某些条件来更改datagridview行或单元格中的颜色
我给出以下代码
进行换色,但无法正常工作,请帮助任何人
In my program i want change the color in datagridview rows or cells depending upon some conditions at runtime how to do it
I give following code
for colorchange but it is not working please help anybody
DataGridView2.Rows(0).Cells(0).Style.BackColor = Color.Green
而且我进行了更改,并使用以下编码进行了检查,但仍无法正常使用
And i have change and check it using following coding but still it is not working
Datagridview2.CurrentRow.DefaultCellstyle.Backcolor=Color.Green
非常感谢Advance
Thank you very much in Advance
推荐答案
DataGridView2.Rows(0).Cells(0).Style.BackColor = Color.Green
对于行:
DataGridView2.Rows(0).DefaultCellStyle.BackColor = Color.Green
或:
DataGridView2.Rows(DataGridView2.CurrentRow.Index).DefaultCellStyle.BackColor = Color.Green
这篇关于我需要变色datagridview的帮助的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!