views:

264

answers:

1

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

How to check CheckListBox item with just single click?

+2  A: 

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.

rahul
where to find this ??
TheMachineCharmer
You can find this in the properties window of the checkedlistbox control.
rahul
Got it thanks !! [+1A] :-)
TheMachineCharmer