当前位置:回答三>生活百科>怎样获取checkedListBox中选中的项的文本?

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

2024-09-27 14:31:38 编辑:join 浏览量:591

怎样获取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)

标签:checkedListBox,选中,文本

版权声明:文章由 回答三 整理收集,来源于互联网或者用户投稿,如有侵权,请联系我们,我们会立即处理。如转载请保留本文链接:https://www.huidasan.com/life/277746.html
热门文章