我正在尝试将选定的项目从清单框移动到清单框。但是我不能...
for (int x = 0; x<=checkedListBox1.Items.Count;x++ )
{
if (checkedListBox1.GetItemChecked(x))
{
listBox1.Items.Add(checkedListBox1.SelectedItem + "\r\n");
}
}
请帮助我
答案 0 :(得分:0)
下面的代码会将选定的项目添加到listBox1
并将其从checkedListBox1
中删除,但是SelectedItems
每次都是一项,因为 CheckedListBox不支持多项选择< / em>,您可以使用CheckedItems
而不是SelectedItems
来选择多个项目。
// Add Selected Items to ListBox
listBox1.Items.AddRange(checkedListBox1.SelectedItems.OfType<object>().ToArray());
// Remove from CheckedListBox
foreach (var item in checkedListBox1.SelectedItems.OfType<object>().ToList())
{
checkedListBox1.Items.Remove(item);
}