1 override of Collection
System.Data (1)
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Model\ModelPropertyImpl.cs (1)
48public override ModelItemCollection Collection
30 references to Collection
System.Data (30)
cdf\src\NetFx40\Tools\System.Activities.Core.Presentation\System\Activities\Core\Presentation\SwitchDesigner.xaml.cs (2)
417ModelItemCollection itemsCollection = itemsCollectionProp.Collection; 430ModelItemCollection itemsCollection = itemsCollectionProp.Collection;
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Base\Core\Internal\PropertyEditing\Model\ModelPropertyEntry.cs (2)
555if (inlinesProperty != null && inlinesProperty.Collection != null) 557inlinesProperty.Collection.Clear();
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Base\Core\Internal\PropertyEditing\Model\ModelPropertyValueCollection.cs (1)
400return parentAsEntry.FirstModelProperty.Collection;
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Model\ModelItemDictionaryImpl.cs (1)
90return this.Properties["ItemsCollection"].Collection;
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Model\ModelSearchServiceImpl.cs (1)
359ModelItemCollection arguments = argumentsProperty.Collection;
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\View\ArgumentDesigner.xaml.cs (8)
152return this.ActivitySchema.Properties[Members].Collection; 519oldItem.Properties[Members].Collection.CollectionChanged -= designer.OnArgumentCollectionChanged; 523newItem.Properties[Members].Collection.CollectionChanged += designer.OnArgumentCollectionChanged; 776this.ReflectedObject.Properties["Attributes"].Collection.CollectionChanged += new NotifyCollectionChangedEventHandler(OnAttributesChanged); 790this.ReflectedObject.Properties["Attributes"].Collection.CollectionChanged -= new NotifyCollectionChangedEventHandler(OnAttributesChanged); 1154ModelItemCollection attributes = this.ReflectedObject.Properties["Attributes"].Collection; 1160ModelItemCollection attributes = this.ReflectedObject.Properties["Attributes"].Collection; 1170ModelItemCollection attributes = this.ReflectedObject.Properties["Attributes"].Collection;
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\View\ImportDesigner.xaml.cs (2)
448this.importsModelItem = modelService.Root.Properties[NamespaceListPropertyDescriptor.ImportCollectionPropertyName].Collection; 755ModelItemCollection importsCollection = modelService.Root.Properties[NamespaceListPropertyDescriptor.ImportCollectionPropertyName].Collection;
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\View\ImportedNamespaceContextItem.cs (1)
45ModelItemCollection importsModelItem = modelService.Root.Properties[NamespaceListPropertyDescriptor.ImportCollectionPropertyName].Collection;
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\View\TreeView\TreeViewItemModelPropertyViewModel.cs (1)
105if (this.Value.Value != null || (this.Value.IsCollection && this.Value.Collection.Count > 0) ||
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\View\VariableDesigner.xaml.cs (7)
246p.Properties["Variables"].Collection.CollectionChanged -= OnVariableCollectionChanged; 266p.Properties["Variables"].Collection.CollectionChanged += OnVariableCollectionChanged; 773return variablesProperty.Collection; 1266ModelItemCollection currentScopeContainer = this.ReflectedObject.Parent.Parent.Properties["Variables"].Collection; 1269ModelItemCollection newScopeContainer = scope.Properties["Variables"].Collection; 1414bool duplicates = this.ReflectedObject.Parent.Parent.Properties["Variables"].Collection.Any(checkForDuplicates); 1439bool duplicates = scope.Properties["Variables"].Collection.Any(checkForDuplicates);
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\WorkflowItemPresenter.cs (4)
255foreach (ModelItem item in this.Item.Properties["Activities"].Collection) 799sequence.Properties["Activities"].Collection.Add(activity); 805sequence.Properties["Activities"].Collection.Add(e.ExistingActivity); 808sequence.Properties["Activities"].Collection.Insert(0, e.ExistingActivity);