Implemented interface member:
method
IndexOf
System.Collections.Generic.IList<T>.IndexOf(T)
1 override of IndexOf
System.Activities.Presentation (1)
System.Activities.Presentation\System\Activities\Presentation\Model\ModelItemCollectionImpl.cs (1)
421public override int IndexOf(ModelItem item)
12 references to IndexOf
System.Activities.Presentation (12)
System.Activities.Presentation\System\Activities\Presentation\Base\Interaction\Model\ModelItemCollection.cs (1)
280return IndexOf(ConvertType(value));
System.Activities.Presentation\System\Activities\Presentation\Model\CollectionChange.cs (1)
60this.Index = this.Collection.IndexOf(this.Item);
System.Activities.Presentation\System\Activities\Presentation\Model\ModelItemExtensions.cs (1)
310sb.Insert(0, "[" + ((ModelItemCollection)modelItem.Parent).IndexOf(modelItem).ToString(CultureInfo.InvariantCulture) + "]");
System.Activities.Presentation\System\Activities\Presentation\Model\MorphHelper.cs (1)
76int index = collectionParent.IndexOf(oldModelItem);
System.Activities.Presentation\System\Activities\Presentation\View\VariableDesigner.xaml.cs (1)
142index = container.IndexOf(oldVariableWrapper.ReflectedObject);
System.Activities.Presentation\System\Activities\Presentation\WorkflowItemsPresenter.cs (7)
549return index < this.Items.IndexOf(sortedModelItems[0]) || index > this.Items.IndexOf(sortedModelItems.Last()) + 1; 555int oldIndex = this.Items.IndexOf(sortedModelItems[0]); 558if (oldIndex != this.Items.IndexOf(item)) 652int oldIndex = this.Items.IndexOf(modelItem); 769int targetIndex = this.Items.IndexOf(dropTarget.ModelItem); 841index = this.Items.IndexOf(currentSelection.PrimarySelection);