行 Chckbox が選択モードになった後、datagridview の特定の行の色を変更したいと思います。
private void dataGridView1_CellValueChanged(object sender, DataGridViewCellEventArgs e)
{
bool isSelect = dataGridView1[0, e.RowIndex].Value as bool? ?? false;
if (isSelect)
{
// Change row color
}
}