18 references to AttachedPropertySetter
PresentationFramework (18)
System\Windows\Markup\BamlCollectionHolder.cs (3)
136
else if (PropertyDefinition.
AttachedPropertySetter
!= null)
138
PropertyDefinition.
AttachedPropertySetter
.Invoke(null, new object[] { Parent, Collection });
208
PropertyDefinition.
AttachedPropertySetter
== null)
System\Windows\Markup\BamlRecordReader.cs (15)
2060
else if (propertyDefinition.
AttachedPropertySetter
!= null)
2063
PushContext(ReaderFlags.PropertyComplexClr, propertyDefinition.
AttachedPropertySetter
, propertyDefinition.PropertyType, 0);
2255
else if (propertyDefinition.
AttachedPropertySetter
!= null)
2257
propertyDefinition.
AttachedPropertySetter
.Invoke(null, new object[] { element, valueObject });
2585
else if (propertyDefinition.
AttachedPropertySetter
!= null)
2592
propertyDefinition.
AttachedPropertySetter
.Name,
2596
propertyDefinition.
AttachedPropertySetter
.Invoke(null, new object[] { o, value });
2603
propertyDefinition.
AttachedPropertySetter
.Name,
2781
else if (propertyDefinition.
AttachedPropertySetter
!= null)
2791
propertyDefinition.
AttachedPropertySetter
,
5831
else if (this.
AttachedPropertySetter
!= null)
5833
return XamlTypeMapper.GetPropertyType(this.
AttachedPropertySetter
);
5855
else if (this.
AttachedPropertySetter
!= null)
5857
return this.
AttachedPropertySetter
.Name.Substring("Set".Length);
5888
(object)this.
AttachedPropertySetter
;