for (int i = 0; i < chkListbox.CheckedItems.Count; i++) {
listbox1.items.add(chkListbox.CheckedItems[i]);
}
for (int j = 0; j < chkListbox.CheckedIndices.Count;) {
SetItemChecked(chkListbox.CheckedIndices[0], false);
}
'프로그래밍 > C#' 카테고리의 다른 글
[C#] 순차적 값 가져오기 (0) | 2022.05.25 |
---|---|
[C#] 메시지 박스 (0) | 2022.05.25 |