1

我有一个 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;
                    }
                }
            }
        }

    }
4

2 回答 2

1

我最终做的是将这与另一个事件联系起来。因为 DataGridView 在 TabControl 内而不是在主选项卡中,所以我在单击 TabControl 时运行了检查。

可能不是最佳实践,当然也不理想,但它现在有效。

于 2013-06-18T18:52:47.667 回答
0

这种属性(ForeColor 或 BackColor ...)应该在Form Load event handler(或 Form Shown)中更改...或在您的其他一些事件处理程序中DataGridView,我认为原因可能是您的 DataGridView 行没有准备好,我猜你将您的代码放在 Form 构造函数中。

private void Form1_Load(object sender, EventArgs e){
   //place your code here
   dgv_Table.Rows[0].Cells[0].Style.ForeColor = Color.Blue;
}
于 2013-06-18T18:05:31.983 回答