Reputation: 2523
I have a checked list box that is acting strangely - for every item I want to select, I have to click on it twice.
Click once:
Click Twice:
Is there a workaround to solve this?
Upvotes: 8
Views: 2499
Reputation: 304
I'm guessing this is Windows Forms. There should be a property on the CheckedListBox called Check on Click. Set that to True for the behavior you're looking for.
Upvotes: 1