这可能很简单,但我无法提出解决方案。
我有一个:
ObservableCollection<ProcessModel> _collection = new ObservableCollection<ProcessModel>();
此集合已填充,包含许多ProcessModel。
我的问题是我有一个ProcessModel,我想在我的_collection中找到它。
我想这样做,所以我能够找到ProcessModel在_collection中的位置索引,我真的不确定如何做到这一点。
我想这样做是因为我想在ObservableCollection(_collection)中提前处理ProcessModel N + 1.
答案 0 :(得分:7)
var x = _collection[(_collection.IndexOf(ProcessItem) + 1)];
答案 1 :(得分:5)
http://msdn.microsoft.com/en-us/library/ms132410.aspx
使用:
_collection.IndexOf(_item)
以下是获取下一项的一些代码:
int nextIndex = _collection.IndexOf(_item) + 1;
if (nextIndex == 0)
{
// not found, you may want to handle this as a special case.
}
else if (nextIndex < _collection.Count)
{
_next = _collection[nextIndex];
}
else
{
// that was the last one
}
答案 2 :(得分:3)
由于ObservableCollection
是序列,因此我们可以使用LINQ
int index =
_collection.Select((x,i) => object.Equals(x, mydesiredProcessModel)? i + 1 : -1)
.Where(x => x != -1).FirstOrDefault();
ProcessModel pm = _collection.ElementAt(index);
我已经将你的索引增加到1,符合你的要求。
或强>
ProcessModel pm = _collection[_collection.IndexOf(mydesiredProcessModel) + 1];
或强>
ProcessModel pm = _collection.ElementAt(_collection.IndexOf(mydesiredProcessModel) + 1);
编辑非空
int i = _collection.IndexOf(ProcessItem) + 1;
var x;
if (i <= _collection.Count - 1) // Index start from 0 to LengthofCollection - 1
x = _collection[i];
else
MessageBox.Show("Item does not exist");