首先用for或foreach进行遍历,然后用if判断该选项是否被选中,如果选中,则去该值。 比如checkBox.Value
///
/// C#中获取CheckListBox选中项的值。
///
/// 要被获取选中项的CheckListBox类型的对象。
///
private ArrayList GetCheckedItemsText(CheckedListBox clb)
{
ArrayList result = new ArrayList();
IEnumerator myEnumerator = clb.CheckedIndices.GetEnumerator();
int index;
while (myEnumerator.MoveNext())
{
index = (int)myEnumerator.Current;
clb.SelectedItem = clb.Items[index];
result.Add(clb.Text);
}
return result; }
或者 你可以使用遍历
for (int i = 0; i < checkedListBox1.Items.Count; i++)
{
if (checkedListBox1.GetItemChecked(i))
{
MessageBox.Show(checkedListBox1.GetItemText(checkedListBox1.Items[i])); //弹出选中值
}
}