Reputation: 431
I have a CheckedListBox that contains 3 values which are added manually and not from code behind.
This is how the CheckedListBox looks like:
I would like to add that these values are always the same in the same order, they never change.
This is my question:
Upvotes: 0
Views: 390
Reputation: 191058
CheckedListBox
in winforms has various properties - Items
, CheckedItems
, CheckedIndices
for maniuplating it from the C# side.
You can check them by calling SetItemChecked
.
Upvotes: 2