15 references to ValueLookupListFromProperty
PresentationFramework (15)
System\Windows\FrameworkTemplate.cs (3)
1229for (int i = 0; i < child.ValueLookupListFromProperty.Count; i++) 1234for (int j = 0; j < child.ValueLookupListFromProperty.Entries[i].Value.Count; j++) 1239valueLookup = (ChildValueLookup)child.ValueLookupListFromProperty.Entries[i].Value.List[j];
System\Windows\StyleHelper.cs (12)
510int mapIndex = childRecord.ValueLookupListFromProperty.EnsureEntry(propertyValue.Property.GlobalIndex); 520childRecord.ValueLookupListFromProperty.Entries[mapIndex].Value.Add(ref valueLookup); 2572int mapIndex = childRecord.ValueLookupListFromProperty.Search(dp.GlobalIndex); 2575if (childRecord.ValueLookupListFromProperty.Entries[mapIndex].Value.Count > 0) 2583ref childRecord.ValueLookupListFromProperty.Entries[mapIndex].Value, 3044int mapIndex = childRecord.ValueLookupListFromProperty.Search(templateProperty.GlobalIndex); 3047ItemStructList<ChildValueLookup> valueLookupList = childRecord.ValueLookupListFromProperty.Entries[mapIndex].Value; 3731int mapIndex = childRecord.ValueLookupListFromProperty.Search(dp.GlobalIndex); 3734if (childRecord.ValueLookupListFromProperty.Entries[mapIndex].Value.Count > 0) 3736ChildValueLookup childValue = childRecord.ValueLookupListFromProperty.Entries[mapIndex].Value.List[0]; 4199int count = childRecord.ValueLookupListFromProperty.Count; 4210DependencyProperty dp = childRecord.ValueLookupListFromProperty.Entries[i].Value.List[0].Property;