3 writes to Collection
System.Activities.Presentation (3)
System.Activities.Presentation\System\Activities\Presentation\Model\CollectionChange.cs (1)
93Collection = this.Collection,
System.Activities.Presentation\System\Activities\Presentation\Model\ModelTreeManager.cs (2)
248Collection = dataModelItemCollection, 295Collection = dataModelItemCollection,
11 references to Collection
System.Activities.Presentation (11)
System.Activities.Presentation\System\Activities\Presentation\Model\CollectionChange.cs (11)
51Fx.Assert(this.Collection != null, "this.Collection cannot be null."); 55((ModelItemCollectionImpl)this.Collection).RemoveAtCore(this.Index); 60this.Index = this.Collection.IndexOf(this.Item); 61((ModelItemCollectionImpl)this.Collection).RemoveCore(this.Item); 64ModelChangeInfo changeInfo = ModelChangeInfoImpl.CreateCollectionItemRemoved(this.Collection, this.Item); 71Fx.Assert(this.Collection != null, "this.Collection cannot be null."); 75((ModelItemCollectionImpl)this.Collection).InsertCore(this.Index, this.Item); 80this.Index = this.Collection.Count; 81((ModelItemCollectionImpl)this.Collection).AddCore(this.Item); 84ModelChangeInfo changeInfo = ModelChangeInfoImpl.CreateCollectionItemAdded(this.Collection, this.Item); 93Collection = this.Collection,