I have a WinForms application that retrieves items from a database and displays them in a list:
<Delete Button><Edit Button><Checkbox><PartNumber><PartDescription>
The Checkbox is unbound and enables users to select as many of the parts listed and then edit properties on those items. The problem I am having is when I select a checkbox at runtime. I can select an item and then quickly scroll down the list and all of a sudden, many of the other items' checkboxes get checked...seemingly in a random fashion. It's as if when I scroll, the datarepeater is firing events on the checkboxes or something. I'm not really sure. The checkboxes work fine otherwise, and enable the user to select the item correctly, I just can't figure out why the random checking / unchecking of the checkboxes.