如何逐个获取列表框中的项目
例如:在我的列表框中我有物品(滚动号)
S1 S2 S3 S4 S5 等...
如何通过一个
获取项目答案 0 :(得分:5)
如果你需要选择你可以做的特定项目(基于nul):
string item = lstItems.Items[index].toString();
如果您需要列表中的所有项目,您可以使用David的方法,或者更短,使用此
var myList = lbMyListBox.Items.Cast<String>().ToList();
答案 1 :(得分:2)
IList<string> items = new List<string>();
foreach(ListItem item in myListBox.Items)
{
items.Add(item.Text);
}