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:
When I don't databind and just load the image column, everything works:
Could this be because of an issue in the dgv. Because the column numbering is messed up when I checked:
I just need to display the image in the image column.
Turns out it was an issue with MDI form and Dgv shown here:
view article describing issue
Used this code and it works: