如何在C# - windows应用程序中找到DataGridViewCell背景颜色?
答案 0 :(得分:2)
在bytes.com上看到这个,而另一个用户声称它有效,虽然我没有测试过它(这是VB):
DataGridView1.Item(ColumnIndex, RowIndex).Style.BackColor = Color
或
DataGridView1.CurrentCell.Style.BackColor = Color
另请参阅MSDN文档:
http://msdn.microsoft.com/en-us/library/system.windows.forms.datagridviewcell.style.aspx
答案 1 :(得分:0)
如果你需要这些信息来改变单元格的渲染,你可以插入Paint或Formatting事件,EventArgs有一个CellStyle属性,里面有背景颜色。