我想获取checkedlistbox控件中复选框的名称。
通过以下代码,我只能获取与复选框关联的文本:
Dim sb As New System.Text.StringBuilder
Dim CheckedList =
(
From Item In clbCheckedListBox.Items.Cast(Of String)() _
.Where(Function(xItem, Index) clbCheckedListBox.GetItemChecked(Index))
Select Item
).ToList
示例:我想要chk_01而不是Hello World
(复选框名称 = clbCheckedListBox
复选框名称之一 = chk_01
chk_01复选框包含文本Hello World )
Ps:我通过上面的代码获得了仅选中
复选框的文本
(我想要相同但带有复选框名称)
请帮助...提前谢谢..