1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
| private void button1_Click(object sender, EventArgs e)
{
load_dgv_calendrier2_OConsult();
// DataGridViewImageColumn imageColumn = new DataGridViewImageColumn();
//Bitmap bmpImage = null;
int number_of_rows = dgv_calendrier.RowCount;
for (int i = 0; i < number_of_rows; i++)
{
DataGridViewImageColumn dataGridViewColumn = new DataGridViewImageColumn();
if (dgv_calendrier.Rows[i].Cells[1].Value.ToString() == "true")
dgv_calendrier.Rows[i].Cells["logo_dom"].Value = dgv_calendrier.Rows[i].Cells[1].Value.ToString();
}
} |
Partager