フィールドがあり、DataGridViewImageColumn
フィールドの行ごとに、条件に応じて異なる画像を追加します。Windowsフォームでこれを行う方法を知っている人はいますか?
if (dgvAndon.Rows[e.RowIndex].Cells["urgencyOrder"].ToString() == "1")
{
//Here I want to add the image in the image property field DataGridViewImageColumn.
}