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

2024年11月23日 03:18
有4个网友回答
网友(1):

checkedListBox1.SelectedItem.ToString();
checkedListBox1.SelectedItems[0].ToString();
这银渣两种方式都可以锋培悄,不懂可以追问或HI聊,但请不中尺要关闭问题,谢谢!

网友(2):

if (checkedListBox1.GetItemChecked(0)) //判断是不是选中了某行卜清

string str=checkedListBox1.SelectedItems[j].ToString(); 获取第j行内的内基弊尘容搏禅

网友(3):

for (int i = 0; i < checkedListBox1.CheckedItems.Count; i++)
{
checkedListBox1.CheckedItems[i];
}

网友(4):

For Each item As Object In checklistbox1.CheckedItems
MsgBox(item.ToString)
Next
VB.NET 的州闹写滑老法册让罩