3 instantiations of ObservableCollectionWorkaround
System.Data (3)
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Base\Core\Internal\PropertyEditing\FromExpression\Framework\PropertyInspector\CategoryBase.cs (1)
31private ObservableCollectionWorkaround<CategoryEditor> categoryEditors = new ObservableCollectionWorkaround<CategoryEditor>();
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Base\Core\Internal\PropertyEditing\Model\ModelCategoryEntry.cs (2)
34_basicProperties = new ObservableCollectionWorkaround<PropertyEntry>(); 35_advancedProperties = new ObservableCollectionWorkaround<PropertyEntry>();
10 references to ObservableCollectionWorkaround
System.Data (10)
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Base\Core\Internal\PropertyEditing\FromExpression\Framework\PropertyInspector\CategoryBase.cs (1)
31private ObservableCollectionWorkaround<CategoryEditor> categoryEditors = new ObservableCollectionWorkaround<CategoryEditor>();
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Base\Core\Internal\PropertyEditing\Model\ModelCategoryEntry.cs (9)
25private ObservableCollectionWorkaround<PropertyEntry> _basicProperties; 26private ObservableCollectionWorkaround<PropertyEntry> _advancedProperties; 76internal ObservableCollectionWorkaround<PropertyEntry> GetBucket(PropertyEntry property) 127ObservableCollectionWorkaround<PropertyEntry> castBucket = bucket as ObservableCollectionWorkaround<PropertyEntry>; 174ObservableCollectionWorkaround<PropertyEntry> collection; 279private static void MarkAllPropertiesDisassociated(ObservableCollectionWorkaround<PropertyEntry> propertyList) 287private static void MarkAttachedPropertiesDisassociated(ObservableCollectionWorkaround<PropertyEntry> propertyList) 298private static bool CullDisassociatedProperties(ObservableCollectionWorkaround<PropertyEntry> propertyList)