19 references to XmlAttributeProperties
PresentationFramework (19)
src\Framework\System\Windows\Data\BindingExpression.cs (2)
658if (target.GetValue(XmlAttributeProperties.XmlnsDictionaryProperty) == null || 659target.GetValue(XmlAttributeProperties.XmlNamespaceMapsProperty) == null)
src\Framework\System\Windows\Markup\Baml2006\WpfSharedBamlSchemaContext.cs (2)
287object dictObject = element.GetValue(System.Windows.Markup.XmlAttributeProperties.XmlnsDictionaryProperty); 289object mapsObject = element.GetValue(System.Windows.Markup.XmlAttributeProperties.XmlNamespaceMapsProperty);
src\Framework\System\Windows\Markup\BamlRecordReader.cs (2)
3980XmlnsDictionary elemDict = XmlAttributeProperties.GetXmlnsDictionary(e); 3993XmlAttributeProperties.SetXmlnsDictionary(e, elemDict);
src\Framework\System\Windows\Markup\Primitives\FrameworkElementFactoryMarkupObject.cs (1)
85if (propertyValues[i].Property != XmlAttributeProperties.XmlnsDictionaryProperty)
src\Framework\System\Windows\Markup\WpfXamlLoader.cs (4)
15private static Lazy<XamlMember> XmlSpace = new Lazy<XamlMember>(() => new WpfXamlMember(XmlAttributeProperties.XmlSpaceProperty, true)); 64depObj.SetValue(XmlAttributeProperties.XmlNamespaceMapsProperty, namespaceMaps); 111XmlAttributeProperties.SetXmlnsDictionary(dObject, dictionary); 231XmlAttributeProperties.SetXmlSpace(dependencyObject, stack.CurrentFrame.XmlSpace.Value ? "default" : "preserve");
src\Framework\System\Windows\Markup\XamlReader.cs (1)
293XmlAttributeProperties.SetXmlnsDictionary(dObject, dictionary);
src\Framework\System\Windows\Markup\XamlTypeMapper.cs (2)
2270XmlnsDictionary prefixDictionary = element.GetValue(XmlAttributeProperties.XmlnsDictionaryProperty) 2278Hashtable namespaceMaps = element.GetValue(XmlAttributeProperties.XmlNamespaceMapsProperty)
src\Framework\System\Windows\Markup\XmlAttributeProperties.cs (5)
64DependencyProperty.RegisterAttached("XmlSpace", typeof(string), typeof(XmlAttributeProperties), 68DependencyProperty.RegisterAttached("XmlnsDictionary", typeof(XmlnsDictionary), typeof(XmlAttributeProperties), 72DependencyProperty.RegisterAttached("XmlnsDefinition", typeof(string), typeof(XmlAttributeProperties), 77DependencyProperty.RegisterAttached("XmlNamespaceMaps", typeof(Hashtable), typeof(XmlAttributeProperties), 351_xmlSpaceSetter = typeof(XmlAttributeProperties).GetMethod("SetXmlSpace",