这是
关于语言C#的。
我想将DataGridView
中的最后一列用作颜色列。列表中的行将包含一些数据,该行的最后一列单元格将具有一种颜色来表示它是对还是错,好还是坏。(类似的东西)是否有可能这样做以及如何(如果可能)?
设置数据源后,您可以使用-
foreach (DataGridViewRow row in yourDataGridView.Rows)
{
if (row.Cells[LastColumnIndex].Value == YourValue)
{
row.Cells[LastColumnIndex].Style.BackColor = Color.Red;
}
}
希望,你已经明白了。