I have a lot of read-only data, and I don't like the clickable look and feel of DataGridViewCheckBoxColumn
s which are unfortunately the default type for rendering Boolean data.
Is there any way, either before or after using AutoGenerateColumns
of a DataGridView
that I can force it to generate DataGridViewTextBoxColumns
that would just print TRUE
or FALSE
instead of DataGridViewCheckBoxColumns
?
If it is easier to address this problem on the DataTable
before setting it as the DataSource
, that would be fine too.