18 references to AttachedPropertySetter
PresentationFramework (18)
System\Windows\Markup\BamlCollectionHolder.cs (3)
135
else if (PropertyDefinition.
AttachedPropertySetter
!= null)
137
PropertyDefinition.
AttachedPropertySetter
.Invoke(null, new object[] { Parent, Collection });
207
PropertyDefinition.
AttachedPropertySetter
== null)
System\Windows\Markup\BamlRecordReader.cs (15)
2056
else if (propertyDefinition.
AttachedPropertySetter
!= null)
2059
PushContext(ReaderFlags.PropertyComplexClr, propertyDefinition.
AttachedPropertySetter
, propertyDefinition.PropertyType, 0);
2251
else if (propertyDefinition.
AttachedPropertySetter
!= null)
2253
propertyDefinition.
AttachedPropertySetter
.Invoke(null, new object[] { element, valueObject });
2581
else if (propertyDefinition.
AttachedPropertySetter
!= null)
2588
propertyDefinition.
AttachedPropertySetter
.Name,
2592
propertyDefinition.
AttachedPropertySetter
.Invoke(null, new object[] { o, value });
2599
propertyDefinition.
AttachedPropertySetter
.Name,
2777
else if (propertyDefinition.
AttachedPropertySetter
!= null)
2787
propertyDefinition.
AttachedPropertySetter
,
5812
else if (this.
AttachedPropertySetter
!= null)
5814
return XamlTypeMapper.GetPropertyType(this.
AttachedPropertySetter
);
5836
else if (this.
AttachedPropertySetter
!= null)
5838
return this.
AttachedPropertySetter
.Name.Substring("Set".Length);
5869
(object)this.
AttachedPropertySetter
;