Which CheckedListBox event triggers after a item is checked?
I have a CheckedListBox where I want an event after an item is checked so that I can use CheckedItems with the new state. Since ItemChecked is fired before CheckedItems is updated it won't work out of the box. What kind of method or event can I use to be notified when the CheckedItems is updated? Branimir You can use the ItemCheck event, if you also check the new state of the item which is being clicked. This is available in the event args, as e.NewValue . If NewValue is checked, include the current item along with the collection proper in your logic: private void checkedListBox1_ItemCheck