Cannot add images to new image column after databinding DataGridView in C#

315 Views Asked by At

I cannot set the image of an image column cell after I databind the DataGridView.

If I add the image column and the image without databinding the dgv, everything works.

Here is my code:

public void LoadDgvDocuments()
{
    var select = "SELECT RegistryTypeId, RegistryTypeDescription FROM RegistryType";
    SqlConnection c = SqlDbConnection.GetConnection();
    var dataAdapter = new SqlDataAdapter(select, c);
    var commandBuilder = new SqlCommandBuilder(dataAdapter);
    var ds = new DataSet();
    dataAdapter.Fill(ds);
    dgvDocuments.ReadOnly = true;
    dgvDocuments.DataSource = ds.Tables[0];
    dgvDocuments.Columns[0].Width = 100;
    dgvDocuments.Columns[1].Width = 250;
    AddDeleteIconColumns();
    dgvDocuments.Columns[2].Width = 50;
}

public void AddDeleteIconColumns()
{
    DataGridViewImageColumn ic = new DataGridViewImageColumn();
    ic.HeaderText = "Img";
    ic.Image = null;
    ic.Name = "cImg";
    ic.Width = 100;
    dgvDocuments.Columns.Add(ic);
    foreach (DataGridViewRow row in dgvDocuments.Rows)
    {
        DataGridViewImageCell cell = row.Cells[2] as DataGridViewImageCell;
        cell.Value = (System.Drawing.Image)Properties.Resources.Icon_delete;
    }
}

When I use the code I get this:

not working

When I don't databind and just load the image column, everything works:

working

Could this be because of an issue in the dgv. Because the column numbering is messed up when I checked:

messed up column numbering

I just need to display the image in the image column.

1

There are 1 best solutions below

0
On

Turns out it was an issue with MDI form and Dgv shown here:

view article describing issue

Used this code and it works:

  private void dgvDocuments_CellFormatting(object sender, DataGridViewCellFormattingEventArgs e)
    {  
        if (dgvDocuments.ColumnCount < 5)
        {
            InsertDocumentColumn();
        }
    }