I have a databinded checkedlistbox in one form and I would like to know if it is even possible to databind the check box of each list box item with a certain property of an
You can find answer here: Using datasource with CheckBoxList
var checkBoxList = (ListBox)MyCheckBoxList; checkBoxList.DataSource = dataSource; checkBoxList.DisplayMember = "name"; checkBoxList.ValueMember = "enabled";
Make sure that the ValueMember is of type bool.
ValueMember
bool