How to reference dynamically created checkedlistbox items in C#
- by Darwin Esq.
I'm trying to see if a particular item in a checkedlistbox is checked or not.
I assumed referencing the item would be:
var checkBox = CheckBoxCheckedListBox1.Items[0];
But that returns an object. Casting to a CheckBox throws an exeption.
Thanks!