7 writes to Collection
PresentationFramework (7)
src\Framework\System\Windows\Markup\BamlCollectionHolder.cs (1)
223Collection = DefaultCollection;
src\Framework\System\Windows\Markup\BamlRecordReader.cs (6)
3056holder.Collection = ProvideValueFromMarkupExtension(arrayExt, holder, null); 3086holder.Collection = holder.DefaultCollection; 3093holder.Collection = CurrentContext.ObjectData; 3182holder.Collection = arrayExt; 3189holder.Collection = holder.DefaultCollection; 4939holder.Collection = element;
12 references to Collection
PresentationFramework (12)
src\Framework\System\Windows\Markup\BamlCollectionHolder.cs (4)
130_resourcesParent.Resources = (ResourceDictionary)Collection; 139_reader.SetDependencyValue(dpParent, PropertyDefinition.DependencyProperty, Collection); 143PropertyDefinition.AttachedPropertySetter.Invoke(null, new object[] { Parent, Collection }); 148Collection, BindingFlags.Instance |
src\Framework\System\Windows\Markup\BamlRecordReader.cs (8)
3047if (holder.Collection == null) 3147if (holder.Collection == null) 3156if (!holder.ReadOnly && holder.Collection != holder.DefaultCollection) 3173Debug.Assert (holder.Collection == null); 3204if (holder.Collection == null && toInsert) 3276result = BamlRecordManager.AsIAddChild(holder.Collection); 3605IAddChild iaddchild = BamlRecordManager.AsIAddChild(holder.Collection); 4863parent = ((BamlCollectionHolder)parent).Collection;