Is there any easy way to disable/grey out a DataGridView? For instance when doing
dgv.Enabled = false
The appearance of the dgv does not change. I have seen people appending the following:
dgv.forecolor = gray
dgv.columnheader.forecolor = gray
However, this seems clumsy. Is there a better way?

