I'm trying to copy the CheckedItems from a CheckedListBox
to a Listbox
, but I am not getting it right.
I have tried
Listbox.Items.Add(checkedlistbox.CheckedItems);
but that only gives me a (collection)
Does anyone have a great line of code to share? :D
This should work:
Edit: replaced string with var so it works with non-string types too.
You should write it in the ItemCheck event. With this code you can show the checked items in the other listBox.