怎样获取checkedListBox 中选中的项的文本
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了怎样获取checkedListBox 中选中的项的文本相关的知识,希望对你有一定的参考价值。
参考技术A 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);本回答被提问者和网友采纳 参考技术B MsgBox(CheckedListBox1.SelectedItem.ToString)
以上是关于怎样获取checkedListBox 中选中的项的文本的主要内容,如果未能解决你的问题,请参考以下文章