c# checklistbox 如何取选择的值?例如:我选择了第1、3、5的选项,如何获取它的值?

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c# checklistbox 如何取选择的值?例如:我选择了第1、3、5的选项,如何获取它的值?相关的知识,希望对你有一定的参考价值。

参考技术A 首先用for或foreach进行遍历,然后用if判断该选项是否被选中,如果选中,则去该值。 比如checkBox.Value 参考技术B /// <summary>
/// C#中获取CheckListBox选中项的值。
/// </summary>
/// <param name="clb">要被获取选中项的CheckListBox类型的对象。</param>
/// <returns>返回一个ArrayList类型的对象。</returns>
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])); //弹出选中值



以上是关于c# checklistbox 如何取选择的值?例如:我选择了第1、3、5的选项,如何获取它的值?的主要内容,如果未能解决你的问题,请参考以下文章

将 CheckListBox 绑定到 ViewModel

delphi中 checklistbox怎样根据数据值做出选中或没选中

在c#winform中怎样获取checklistbox选中的值

csharp 选择或取消选择所有checkListBox itelms

公共控件

如何读取C# object的值