2 instantiations of AmbientPropertyValue
System.Xaml (2)
System\Xaml\Context\ObjectWriterContext.cs (2)
340AmbientPropertyValue apValue = new AmbientPropertyValue(null, inst); 394AmbientPropertyValue apValue = new AmbientPropertyValue(prop, value);
24 references to AmbientPropertyValue
PresentationFramework (7)
System\Windows\Markup\DependencyPropertyConverter.cs (2)
215AmbientPropertyValue firstAmbientValue = ambientProvider.GetFirstAmbientValue(ceilingTypes, styleTargetType, 257AmbientPropertyValue ambientValue =
System\Windows\Markup\RoutedEventConverter.cs (1)
95AmbientPropertyValue firstAmbientValue = iapp.GetFirstAmbientValue(ceilingTypes, styleTargetType);
System\Windows\StaticResourceExtension.cs (4)
236IEnumerable<AmbientPropertyValue> ambientValues = null; 248List<AmbientPropertyValue> ambientList; 249ambientList = ambientValues as List<AmbientPropertyValue>; 254AmbientPropertyValue ambientValue = ambientList[i];
System.Xaml (17)
System\Xaml\Context\ObjectWriterContext.cs (11)
172internal AmbientPropertyValue ServiceProvider_GetFirstAmbientValue(IEnumerable<XamlType> ceilingTypes, XamlMember[] properties) 174List<AmbientPropertyValue> valueList = FindAmbientValues(ceilingTypes, /*searchLiveStackOnly*/false, /*types*/null, properties, true); 184internal IEnumerable<AmbientPropertyValue> ServiceProvider_GetAllAmbientValues(IEnumerable<XamlType> ceilingTypes, XamlMember[] properties) 186List<AmbientPropertyValue> valueList = FindAmbientValues(ceilingTypes, /*searchLiveStackOnly*/false, /*types*/null, properties, /*stopAfterFirst*/ false); 196internal IEnumerable<AmbientPropertyValue> ServiceProvider_GetAllAmbientValues(IEnumerable<XamlType> ceilingTypes, bool searchLiveStackOnly, IEnumerable<XamlType> types, XamlMember[] properties) 198List<AmbientPropertyValue> valueList = FindAmbientValues(ceilingTypes, searchLiveStackOnly, types, properties, false); 301private List<AmbientPropertyValue> FindAmbientValues(IEnumerable<XamlType> ceilingTypesEnumerable, 317List<AmbientPropertyValue> retList = new List<AmbientPropertyValue>(); 340AmbientPropertyValue apValue = new AmbientPropertyValue(null, inst); 394AmbientPropertyValue apValue = new AmbientPropertyValue(prop, value);
System\Xaml\Context\ServiceProviderContext.cs (3)
131AmbientPropertyValue IAmbientProvider.GetFirstAmbientValue( 165IEnumerable<AmbientPropertyValue> IAmbientProvider.GetAllAmbientValues( 199IEnumerable<AmbientPropertyValue> IAmbientProvider.GetAllAmbientValues(
System\Xaml\IAmbientProvider.cs (3)
13AmbientPropertyValue GetFirstAmbientValue(IEnumerable<XamlType> ceilingTypes, 17IEnumerable<AmbientPropertyValue> GetAllAmbientValues(IEnumerable<XamlType> ceilingTypes, 22IEnumerable<AmbientPropertyValue> GetAllAmbientValues(IEnumerable<XamlType> ceilingTypes,