111,126
社区成员
发帖
与我相关
我的任务
分享 string s = string.Empty;
for (int i = 0; i < checkedListBox1.Items.Count; i++)
{
if (checkedListBox1.GetItemChecked(i))//是否选中
{
s += checkedListBox1.Items[i].ToString();
}
}