15 references to ValueLookupListFromProperty
PresentationFramework (15)
System\Windows\FrameworkTemplate.cs (3)
1239for (int i = 0; i < child.ValueLookupListFromProperty.Count; i++) 1244for (int j = 0; j < child.ValueLookupListFromProperty.Entries[i].Value.Count; j++) 1249valueLookup = (ChildValueLookup)child.ValueLookupListFromProperty.Entries[i].Value.List[j];
System\Windows\StyleHelper.cs (12)
514int mapIndex = childRecord.ValueLookupListFromProperty.EnsureEntry(propertyValue.Property.GlobalIndex); 524childRecord.ValueLookupListFromProperty.Entries[mapIndex].Value.Add(ref valueLookup); 2579int mapIndex = childRecord.ValueLookupListFromProperty.Search(dp.GlobalIndex); 2582if (childRecord.ValueLookupListFromProperty.Entries[mapIndex].Value.Count > 0) 2590ref childRecord.ValueLookupListFromProperty.Entries[mapIndex].Value, 3054int mapIndex = childRecord.ValueLookupListFromProperty.Search(templateProperty.GlobalIndex); 3057ItemStructList<ChildValueLookup> valueLookupList = childRecord.ValueLookupListFromProperty.Entries[mapIndex].Value; 3741int mapIndex = childRecord.ValueLookupListFromProperty.Search(dp.GlobalIndex); 3744if (childRecord.ValueLookupListFromProperty.Entries[mapIndex].Value.Count > 0) 3746ChildValueLookup childValue = childRecord.ValueLookupListFromProperty.Entries[mapIndex].Value.List[0]; 4209int count = childRecord.ValueLookupListFromProperty.Count; 4220DependencyProperty dp = childRecord.ValueLookupListFromProperty.Entries[i].Value.List[0].Property;