Hi, can anyone tell me how I can bind a collection to a windowsforms CheckboxList.
I have a collection and use a foreach to add items to a checkboxlist, but I'missing something I guess.
foreach (IncidentPlaatsEntity _incidentPlaats in _incidentPlaatsCollection)
{
cblIncidentPlaats.Items.Add(_incidentPlaats);
}
_incidentPlaats is an Entity all I see on the screen is Libra.Data.EntityClasses.IncidentPlaatsEntity.
Oeps, vergeten de veldnaam toe te voegen. Dat was het probleem.
TIA