views:

134

answers:

1

hello, i am looking for an event for a CheckedListBox, that fires after the checkedstate of an item has changed.

the ItemCheckEventHandler is not good for me, because it fires BEFORE the new state has been applied.

thanks!

+2  A: 

If all you're looking for is the check state after the check, you can use the ItemCheck event's ItemCheckEventArgs which includes the Index, the NewValue, and the CurrentValue.

C-Pound Guru
thanks. yes i tried that already, but i will need the newvalue applied in the items-array. and not just in some eventargs structure.
clamp