我有一个 C# Winforms 应用程序,我需要在其中以编程方式设置单元格字体颜色。如果满足条件,则字体应为红色。我已经确认条件检查是正确的,问题出在线路上
dgv_Table.Rows[cell.RowIndex].Cells[cell.ColumnIndex].Style.ForeColor = Color.Blue;
其中“单元格”是我当前正在检查的单元格。这绝对没有任何作用。即使我把它从循环中取出并像这样检查:
dgv_Table.Rows[0].Cells[0].Style.ForeColor = Color.Blue;
它仍然什么都不做。这些代码行在 Main() 期间调用的辅助函数中。
如果我设置 DefaultCellValue,那确实会改变视图,但这不是我想要的。
private void Main_Load(object sender, EventArgs e)
{
dgv_Table.Rows[0].Cells[0].Style.ForeColor = Color.Blue;
dgv_Table.Rows[0].Cells[0].Style.BackColor = Color.Black;
foreach (DataGridViewRow row in dgv_Table.Rows)
{
foreach (DataGridViewCell cell in row.Cells)
{
cell.Style.BackColor = Color.Black;
if (cell.OwningColumn.Name == "RiskName" && cell.Value.ToString() != "")
{
string wholeText = cell.Value.ToString();
int score = Convert.ToInt32(wholeText.Substring(wholeText.IndexOf("[") + 1, wholeText.IndexOf("–") - 1));
if (score > 300)
{
dgv_Table.Rows[cell.RowIndex].Cells[cell.ColumnIndex].Style.ForeColor = Color.Blue;
}
}
}
}
}