0

我有ListBox一个DisplayMember叫做“数据”和一个ValueMember叫做“数字”的东西。我想ValueMember使用如下循环获取所有项目中的所有项目。

for (int i = 0; i < ListBox1.Items.Count; i++)
{ 
    //Get the `ValueMember` of `Item` where it's `Index` is `i` 
}
4

1 回答 1

2

您是否尝试过以下代码:

for (int i = 0; i < ListBox1.Items.Count; i++)
{ 
   Console.WriteLine((ListBox1.Items[i] as YourItemClassType).Number.ToString());
}

YourItemClassType 是您添加到 ListBox1 的类,YourItemClassType包含 Number 和 Data 属性

希望有所帮助

于 2015-03-14T09:14:23.920 回答