データが入力されたdataGridViewオブジェクトがあります。ボタンをクリックして、セルの背景の色を変更したい。これは私が現在持っているものです
foreach(DataGridViewRow row in dataGridView1.Rows)
{
foreach(DataGridViewColumn col in dataGridView1.Columns)
{
//row.Cells[col.Index].Style.BackColor = Color.Green; //doesn't work
//col.Cells[row.Index].Style.BackColor = Color.Green; //doesn't work
dataGridView1[col.Index, row.Index].Style.BackColor = Color.Green; //doesn't work
}
}
これら3つすべてが原因で、テーブルが重複して再描画され、テーブルのサイズを変更しようとすると混乱が生じます。セルをクリックすると、値は強調表示されたままになり、背景色は変更されません。
Q:テーブルが存在した後に個々のセルの背景色を変更するにはどうすればよいですか?
これは私のために働く
dataGridView1.Rows[rowIndex].Cells[columnIndex].Style.BackColor = Color.Red;
DataGridViewTextBoxCellの独自の拡張を実装し、次のようにPaintメソッドをオーバーライドします。
class MyDataGridViewTextBoxCell : DataGridViewTextBoxCell
{
protected override void Paint(Graphics graphics, Rectangle clipBounds, Rectangle cellBounds, int rowIndex,
DataGridViewElementStates cellState, object value, object formattedValue, string errorText,
DataGridViewCellStyle cellStyle, DataGridViewAdvancedBorderStyle advancedBorderStyle, DataGridViewPaintParts paintParts)
{
if (value != null)
{
if ((bool) value)
{
cellStyle.BackColor = Color.LightGreen;
}
else
{
cellStyle.BackColor = Color.OrangeRed;
}
}
base.Paint(graphics, clipBounds, cellBounds, rowIndex, cellState, value,
formattedValue, errorText, cellStyle, advancedBorderStyle, paintParts);
}
}
次に、コードで、列のCellTemplateプロパティをクラスのインスタンスに設定します
columns.Add(new DataGridViewTextBoxColumn() {CellTemplate = new MyDataGridViewTextBoxCell()});
働いてくれてありがとう
ここで私はこれをqtyフィールドでゼロにしていますが、セルが赤色であることを示しています
int count = 0;
foreach (DataGridViewRow row in ItemDg.Rows)
{
int qtyEntered = Convert.ToInt16(row.Cells[1].Value);
if (qtyEntered <= 0)
{
ItemDg[0, count].Style.BackColor = Color.Red;//to color the row
ItemDg[1, count].Style.BackColor = Color.Red;
ItemDg[0, count].ReadOnly = true;//qty should not be enter for 0 inventory
}
ItemDg[0, count].Value = "0";//assign a default value to quantity enter
count++;
}
}
スタイルの更新にはDataBindingCompleteイベントの使用を検討してください。次のコードは、セルのスタイルを変更します。
private void Grid_DataBindingComplete(object sender, DataGridViewBindingCompleteEventArgs e)
{
this.Grid.Rows[2].Cells[1].Style.BackColor = Color.Green;
}