ListIn </int>的SelectedIndex

时间:2012-06-24 06:41:41

标签: c# silverlight windows-phone-7

List<int> megalist;
int boxId;
boxId = ListofUniqueIDSpecificToDate.IndexOf(lstbox.SelectedIndex);<< this is wrong

我正试图通过利用lstbox上的选定索引在megalist中显示ID

意思是,如果是选择lstbox上的第一个项目,它将加载megalist上的第一个项目

1 个答案:

答案 0 :(得分:1)

我假设您要从i集合中检索ListofUniqueIDSpecificToDate th 项目,其中i对应于所选项目的索引你的lstbox

在这种情况下,您需要使用列表索引器[i](假设ListofUniqueIDSpecificToDate的类型实现了IList<T>接口)。

boxId = ListofUniqueIDSpecificToDate[lstbox.SelectedIndex];
另一方面,

IndexOf(obj)将检索其值等于obj的集合中第一个元素的索引。