Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

enter image description here

share|improve this question
I was not allowed to add an image because of low reputation - but if you want to see the problem, you can see in the below image i.stack.imgur.com/WFO1o.png – Anand Rastogi Sep 13 '11 at 20:44

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.