How set image to data grid view cell after data binding?
问题 I have problem with adding image to DGV cell after data binding. this is my code: DataTable tab = conn.searchData(searchTmp); bindingSource1.DataSource = tab; DGV.AllowUserToAddRows = false; DGV.AutoResizeColumns(DataGridViewAutoSizeColumnsMode.AllCellsExceptHeader); //dont show this colls DGV.Columns["zId"].Visible = false; DGV.Columns["tId"].Visible = false; DGV.Columns["tId2"].Visible = false; DataGridViewImageColumn co = new DataGridViewImageColumn(); System.Reflection.Assembly thisExe;