Hi
You should bind the CheckBox.Checked property if you disable the formatting(3rd parameter set to FALSE), or you can enable the formatting by set the 3rd parameter to TRUE, something as following would work
.checkBox1.DataBindings.Add("Checked", dt, "status",
false, DataSourceUpdateMode.OnValidation, null);
.checkBox1.DataBindings.Add("CheckState", dt, "status",
true, DataSourceUpdateMode.OnValidation,null);
Best Regards,
Zhi-xin Ye.