C # How can I check the selected item in the list using code?

I have a list with checkboxes, how can I check the selecteditem?

thank

0


source to share


1 answer


Assuming Windows Forms, clb.SetItemChecked (clb.SelectedIndex, true) where clb is a CheckedListBox object.



+3


source







All Articles