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

I have a winforms datagridview, where I want to d*isable some cells/rows* with setting ReadOnly=true. What could be the reason that sometimes this has no effect and the cells/rows are still editable?

Are there other possibilities to prevent editing specific rows or cells? Is it possible to prevent clicking or entering a cell?

share|improve this question

3 Answers

up vote 6 down vote accepted

You could prevent editing with the CellBeginEdit event. If you dont want the cell to be edited, you can cancel the edit. For example, if you only want the first column to be editable, you can do this:

private void dataGridView1_CellBeginEdit(object sender, 
   DataGridViewCellCancelEventArgs e)
{
   if (e.ColumnIndex != 0) 
   { 
      e.Cancel = true;
   }
}
share|improve this answer

Try running a datagridview.Refresh() after setting the readonly value to true.

share|improve this answer

One possibility is that if you set the DataGridView's ReadOnly property (in code), then the columns' ReadOnly needs to be reset:

this.dgv.Columns[0].ReadOnly = true; 
this.dgv.ReadOnly = false; 
// Need to reset the column's ReadOnly state:
this.dgv.Columns[0].ReadOnly = true; 

You can also set whole rows as ReadOnly

share|improve this answer

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.