Something like DataGridViewCheckBoxColumn
-
Hi all, There are all these nice types of columns you can add to a
DataGridView
- ex.DataGridViewCheckBoxColumn
andDataGridViewButtonColumn
Is there a way to define my own type for such a column? What I'd like to do is this; I have aDataGridView
on my form in which I display the various values of a list of attributes (I'm not using data binding). The different attributes have different types of values, some are strings, some are integers, some are dates and some are byte values that represent a bit field. These bit fields I'd like to display in theDataGridView
as a group ofcheckboxes
. So I had in mind to create a control that consists of a panel containing 8 check boxes (or something like that) and then display that control in theDataGridView
cell. But how? Any ideas or suggestions would be appreciated. TIA -
Hi all, There are all these nice types of columns you can add to a
DataGridView
- ex.DataGridViewCheckBoxColumn
andDataGridViewButtonColumn
Is there a way to define my own type for such a column? What I'd like to do is this; I have aDataGridView
on my form in which I display the various values of a list of attributes (I'm not using data binding). The different attributes have different types of values, some are strings, some are integers, some are dates and some are byte values that represent a bit field. These bit fields I'd like to display in theDataGridView
as a group ofcheckboxes
. So I had in mind to create a control that consists of a panel containing 8 check boxes (or something like that) and then display that control in theDataGridView
cell. But how? Any ideas or suggestions would be appreciated. TIA