Top "Checkedlistbox" questions

Displays a ListBox in which a check box is displayed to the left of each item.

iterate through checkedListBox testing for checked - cast error

i'm trying to check each item in a checkedlistbox and do something with the item depending if it is checked …

winforms foreach checkedlistbox
Creating a string-array of checked items in checked-list-box

How can I create an array containing the checked items in a checkedlistbox using foreach loop (or any other way)? …

c# foreach checkedlistbox
CheckedListBox - Search for an item by text

I have a CheckedListBox bound to a DataTable. Now I need to check some items programmatically, but I find that …

c# .net winforms checkedlistbox
Iterate through CheckedListBox in WinForms?

If I have Checked list box in Win forms which I fill like this List<Tasks> tasks = db.…

c# winforms iteration checkedlistbox
How to retrieve texts for CheckedItems in CheckedListBox

I have a CheckBoxList which contain dynamic data.Now i want to get the list of selected item from CheckBoxList. …

c# .net winforms data-binding checkedlistbox
Tooltips for CheckedListBox items?

Is there a straighforward way to set additional text to appear in a tooltip when a user's mouse is held …

c# winforms user-interface tooltip checkedlistbox
How to change CheckedListBox item vertical space

I need to change the vertical space for CheckedListBox items so they fit with the text boxes on the other …

c# winforms checkedlistbox
Manage CheckedListBox ItemCheck event to run after an item checked not before

I am using CheckedListBox in C# Window Forms Application. I want to do something after one item checked or unchecked …

c# .net winforms checkedlistbox
CheckedListBox Control - Only checking the checkbox when the actual checkbox is clicked

I'm using a CheckedListBox control in a small application I'm working on. It's a nice control, but one thing bothers …

c# winforms checkedlistbox
Odd behavior when toggling CheckedListBox item's checked state via MouseClick when clicking on the same selection

The WinForms CheckedListBox control has 2 default behaviors when clicking with a mouse: In order to check/uncheck an item you're …

c# .net winforms event-handling checkedlistbox