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!
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!
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.