我有一个CheckedListBox
这样的:
:'''''''''''''''/\
: [ ] item1 ||
: [x] item2 ||
: [ ] item3 ##
: [ ] item4 ||
: [x] item5 ||
L...............\/
现在我想提取检查项目的索引:
int[] indexes = ExtractCheckedIndexes (myCheckedListBox);
现在索引应该有 2 个元素 = { 1, 4 }。
如何做到这一点?