I have a data grid view ( say 5 columns ) . User has the option to disable/enable 1 particular column of the data table (using radio buttons). So How should I go about doing it?
When I select to disable the column, I need to make it non editable, change the color of the column so that user can understand that the column is disabled and any other suggestion are also welcome.
Set the column’s ReadOnly property to true to make it non-editable. And alter its DefaultCellStyle.BackColor (and/or ForeColor) to make it obvious to the user.