How can i add a checkbox to a datatable and bind it to a datagrid?
DataTable ColumnList = new DataTable();
ColumnList.Columns.Add("Column Fields");
int j = 1, i = 0;
CheckBox colCheckbox = new CheckBox();
foreach (Columns col in ColumnNames)
{
colCheckbox.Name = col.ColumnName;
ColumnList.Rows.Add(colCheckbox); // This is getting displayed as System.Windows.Forms.CheckBox,CheckState=0
}
Please help.
DataTablebecause a check box is a visual control, while aDataTableis only data. You can, however, add a checkbox column to aDataGridView(which is a visual control that can be data-bound to aDataTable). – stakx Apr 12 '11 at 10:37