您的位置首页百科问答

怎样获取checkedListBox中选中的项的文本?

怎样获取checkedListBox中选中的项的文本?

的有关信息介绍如下:

怎样获取checkedListBox中选中的项的文本?

string output = string.Empty; for (int i = 0; i < checkedListBox1.CheckedIndices.Count; i++) { output += checkedListBox1.Items[ checkedListBox1.CheckedIndices[i]].ToString() + "\r\n "; } MessageBox.Show(output);

MsgBox(CheckedListBox1.SelectedItem.ToString)