web-dev-qa-db-ja.com

DataGridViewセルのフォントを特定の色にするにはどうすればよいですか?

このコードは、セルの背景を青にするために適切に機能します。

DataGridViewRow dgvr = dataGridViewLifeSchedule.Rows[rowToPopulate];
dgvr.Cells[colName].Style.BackColor = Color.Blue;
dgvr.Cells[colName].Style.ForeColor = Color.Yellow;

...しかし、ForeColorの効果は私が期待した/期待したものではありません。フォントの色はまだ黒で、黄色ではありません。

フォントの色を黄色にするにはどうすればよいですか?

12
B. Clay Shannon

あなたはこれを行うことができます:

dataGridView1.SelectedCells[0].Style 
   = new DataGridViewCellStyle { ForeColor = Color.Yellow};

そのセルスタイルコンストラクターで、スタイル設定(フォントなど)を設定することもできます。

また、特定の列のテキストの色を設定する場合は、次のようにします。

dataGridView1.Columns[colName].DefaultCellStyle.ForeColor = Color.Yellow;
dataGridView1.Columns[0].DefaultCellStyle.BackColor = Color.Blue;

更新済み

したがって、セルの値に基づいて色を付けたい場合は、次のような方法でうまくいきます。

private void dataGridView1_CellFormatting(object sender, DataGridViewCellFormattingEventArgs e)
{
    if (dataGridView1.Rows[e.RowIndex].Cells[e.ColumnIndex].Value != null && !string.IsNullOrWhiteSpace(dataGridView1.Rows[e.RowIndex].Cells[e.ColumnIndex].Value.ToString()))
    {
        dataGridView1.Rows[e.RowIndex].Cells[e.ColumnIndex].Style = new DataGridViewCellStyle { ForeColor = Color.Orange, BackColor = Color.Blue };
    }
    else
    {
        dataGridView1.Rows[e.RowIndex].Cells[e.ColumnIndex].Style = dataGridView1.DefaultCellStyle;
    }
}
19
itsmatt
  1. DataGridViewのデータ量に関連する)パフォーマンスの問題を回避するには、DataGridViewDefaultCellStyleおよびDataGridViewCellInheritedStyleを使用します。参照: http://msdn.Microsoft.com/en-us/library/ha5xt0d9.aspx

  2. DataGridView.CellFormatting以前のコード制限で影響を受けるセルをペイントします。

  3. この場合、おそらくDataGridViewDefaultCellStyleを上書きする必要があります。

// edit
@ itsmattに対するコメントへの返信。すべての行/セルにスタイルを入力する場合は、次のようなものが必要です。

    // Set the selection background color for all the cells.
dataGridView1.DefaultCellStyle.SelectionBackColor = Color.White;
dataGridView1.DefaultCellStyle.SelectionForeColor = Color.Black;

// Set RowHeadersDefaultCellStyle.SelectionBackColor so that its default 
// value won't override DataGridView.DefaultCellStyle.SelectionBackColor.
dataGridView1.RowHeadersDefaultCellStyle.SelectionBackColor = Color.Empty;

// Set the background color for all rows and for alternating rows.  
// The value for alternating rows overrides the value for all rows. 
dataGridView1.RowsDefaultCellStyle.BackColor = Color.LightGray;
dataGridView1.AlternatingRowsDefaultCellStyle.BackColor = Color.DarkGray;
4
varg