Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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?

like image 746
Pratik Deoghare Avatar asked Oct 01 '09 11:10

Pratik Deoghare


1 Answers

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.

like image 131
rahul Avatar answered Sep 21 '22 00:09

rahul