19 references to XmlAttributeProperties
PresentationFramework (19)
System\Windows\Data\BindingExpression.cs (2)
648
if (target.GetValue(
XmlAttributeProperties
.XmlnsDictionaryProperty) == null ||
649
target.GetValue(
XmlAttributeProperties
.XmlNamespaceMapsProperty) == null)
System\Windows\Markup\Baml2006\WpfSharedBamlSchemaContext.cs (2)
277
object dictObject = element.GetValue(System.Windows.Markup.
XmlAttributeProperties
.XmlnsDictionaryProperty);
279
object mapsObject = element.GetValue(System.Windows.Markup.
XmlAttributeProperties
.XmlNamespaceMapsProperty);
System\Windows\Markup\BamlRecordReader.cs (2)
3932
XmlnsDictionary elemDict =
XmlAttributeProperties
.GetXmlnsDictionary(e);
3945
XmlAttributeProperties
.SetXmlnsDictionary(e, elemDict);
System\Windows\Markup\Primitives\FrameworkElementFactoryMarkupObject.cs (1)
74
if (propertyValues[i].Property !=
XmlAttributeProperties
.XmlnsDictionaryProperty)
System\Windows\Markup\WpfXamlLoader.cs (4)
18
private static Lazy<XamlMember> XmlSpace = new Lazy<XamlMember>(() => new WpfXamlMember(
XmlAttributeProperties
.XmlSpaceProperty, true));
67
depObj.SetValue(
XmlAttributeProperties
.XmlNamespaceMapsProperty, namespaceMaps);
114
XmlAttributeProperties
.SetXmlnsDictionary(dObject, dictionary);
251
XmlAttributeProperties
.SetXmlSpace(dependencyObject, stack.CurrentFrame.XmlSpace.Value ? "default" : "preserve");
System\Windows\Markup\XamlReader.cs (1)
376
XmlAttributeProperties
.SetXmlnsDictionary(dObject, dictionary);
System\Windows\Markup\XamlTypeMapper.cs (2)
2177
XmlnsDictionary prefixDictionary = element.GetValue(
XmlAttributeProperties
.XmlnsDictionaryProperty)
2185
Hashtable namespaceMaps = element.GetValue(
XmlAttributeProperties
.XmlNamespaceMapsProperty)
System\Windows\Markup\XmlAttributeProperties.cs (5)
49
DependencyProperty.RegisterAttached("XmlSpace", typeof(string), typeof(
XmlAttributeProperties
),
53
DependencyProperty.RegisterAttached("XmlnsDictionary", typeof(XmlnsDictionary), typeof(
XmlAttributeProperties
),
57
DependencyProperty.RegisterAttached("XmlnsDefinition", typeof(string), typeof(
XmlAttributeProperties
),
62
DependencyProperty.RegisterAttached("XmlNamespaceMaps", typeof(Hashtable), typeof(
XmlAttributeProperties
),
335
_xmlSpaceSetter = typeof(
XmlAttributeProperties
).GetMethod("SetXmlSpace",