How to: Prevent Row Addition and Deletion in the Windows Forms DataGridView Control Using the Designer

Sometimes you will want to prevent users from entering new rows of data or deleting existing rows in your DataGridView control. New rows are entered in the special row for new records at the bottom of the control. When you disable row addition, the row for new records is not displayed. You can then make the control entirely read-only by disabling row deletion and cell editing.

The following procedure requires a Windows Application project with a form containing a DataGridView control. For information about setting up such a project, see How to: Create a Windows Forms application project and How to: Add Controls to Windows Forms.

To prevent row addition and deletion

  • Click the designer actions glyph (Small black arrow) on the upper-right corner of the DataGridView control, and then clear the Enable Adding and Enable Deleting check boxes.

    Note

    To make the control entirely read-only, clear the Enable Editing check box as well.

See also