How to check CheckListBox item with single click?

I am coding Windows Forms application in C# and using CheckListBox Control.

How to check CheckListBox item with just single click?


Solution 1:

I think you are looking for

CheckOnClick property

set it to true

Gets or sets a value indicating whether the check box should be toggled when an item is selected.

Solution 2:

Set the property at Design Time in this way

enter image description here

or by code:

CheckedListBox.CheckOnClick = true;