您的位置:首页 > 其它

checkedListBox 获取选中的项 并且移动

2013-01-02 11:26 211 查看
private void buttonSendChoickedToNosend_Click(object sender, EventArgs e)
{
for (int i = 0; i < this.checkedListBoxSend.CheckedItems.Count; i++)
{
this.checkedListBoxSiftEmail.Items.Add(checkedListBoxSend.GetItemText(checkedListBoxSend.Items[i]));
this.checkedListBoxSend.Items.RemoveAt(i);
}
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: