In my WinForm, I have a bound DataGridView in the first column is a checkbox column "Select" and 3rd column is Image column "Delete". A default image has been set to the image column.
Requirement is - user should be able to select the row (using checkbox) or delete the row (by clicking on delete image cell) only if few conditions are satisfied - otherwise,
The delete image should not be visible (because disabling it has no effect)
The checkbox should be disabled / hidden
I tried various options to hide a cell - but to no avail. Finally, I created a new class "DataGridViewBlankCell" inheriting DataGridViewCell which as the name says - is a blank cell. Based on conditions - I swap the image cell with this blank cell.
Everything is working OK - but the cell does not render blank properly. On form load, I still see the delete image but when I minimize the window, it turn to blank. It reappears again after scroll and such.
For reference - please find the DataGridViewBlankCell code
public class DataGridViewBlankCell : DataGridViewCell
{
public DataGridViewBlankCell()
{
}
public override Type FormattedValueType
{
get
{
if (this.OwningColumn is DataGridViewCheckBoxColumn)
return false.GetType();
else if (this.OwningColumn is DataGridViewImageColumn)
return typeof(System.Drawing.Bitmap);
else if (this.OwningColumn is DataGridViewComboBoxColumn)
return typeof(System.Int32);
else
return "".GetType();
}
}
protected override object GetFormattedValue(object value, int rowIndex, ref DataGridViewCellStyle cellStyle, System.ComponentModel.TypeConverter valueTypeConverter, System.ComponentModel.TypeConverter formattedValueTypeConverter, DataGridViewDataErrorContexts context)
{
if (this.OwningColumn is DataGridViewCheckBoxColumn)
return false;
else if (this.OwningColumn is DataGridViewImageColumn)
return new System.Drawing.Bitmap(1, 1);
else if (this.OwningColumn is DataGridViewComboBoxColumn)
return 0;
else
return "";
}
}
And this is how I am swapping the cells
public static void HideGridViewCell(DataGridViewCell GridCell)
{
if (!(GridCell is DataGridViewBlankCell))
{
DataGridViewBlankCell blankCell = new DataGridViewBlankCell();
blankCell.Tag = GridCell;
GridCell.OwningRow.Cells[GridCell.ColumnIndex] = blankCell;
}
}
Sorry if the post is long and thanks in advance for your attention.
Here's a screencap
