15 references to ValueLookupListFromProperty
PresentationFramework (15)
System\Windows\FrameworkTemplate.cs (3)
1225for (int i = 0; i < child.ValueLookupListFromProperty.Count; i++) 1230for (int j = 0; j < child.ValueLookupListFromProperty.Entries[i].Value.Count; j++) 1235valueLookup = (ChildValueLookup)child.ValueLookupListFromProperty.Entries[i].Value.List[j];
System\Windows\StyleHelper.cs (12)
506int mapIndex = childRecord.ValueLookupListFromProperty.EnsureEntry(propertyValue.Property.GlobalIndex); 516childRecord.ValueLookupListFromProperty.Entries[mapIndex].Value.Add(ref valueLookup); 2569int mapIndex = childRecord.ValueLookupListFromProperty.Search(dp.GlobalIndex); 2572if (childRecord.ValueLookupListFromProperty.Entries[mapIndex].Value.Count > 0) 2580ref childRecord.ValueLookupListFromProperty.Entries[mapIndex].Value, 3041int mapIndex = childRecord.ValueLookupListFromProperty.Search(templateProperty.GlobalIndex); 3044ItemStructList<ChildValueLookup> valueLookupList = childRecord.ValueLookupListFromProperty.Entries[mapIndex].Value; 3728int mapIndex = childRecord.ValueLookupListFromProperty.Search(dp.GlobalIndex); 3731if (childRecord.ValueLookupListFromProperty.Entries[mapIndex].Value.Count > 0) 3733ChildValueLookup childValue = childRecord.ValueLookupListFromProperty.Entries[mapIndex].Value.List[0]; 4196int count = childRecord.ValueLookupListFromProperty.Count; 4207DependencyProperty dp = childRecord.ValueLookupListFromProperty.Entries[i].Value.List[0].Property;