18 references to AttachedPropertySetter
PresentationFramework (18)
System\Windows\Markup\BamlCollectionHolder.cs (3)
137
else if (PropertyDefinition.
AttachedPropertySetter
!= null)
139
PropertyDefinition.
AttachedPropertySetter
.Invoke(null, new object[] { Parent, Collection });
209
PropertyDefinition.
AttachedPropertySetter
== null)
System\Windows\Markup\BamlRecordReader.cs (15)
2075
else if (propertyDefinition.
AttachedPropertySetter
!= null)
2078
PushContext(ReaderFlags.PropertyComplexClr, propertyDefinition.
AttachedPropertySetter
, propertyDefinition.PropertyType, 0);
2270
else if (propertyDefinition.
AttachedPropertySetter
!= null)
2272
propertyDefinition.
AttachedPropertySetter
.Invoke(null, new object[] { element, valueObject });
2598
else if (propertyDefinition.
AttachedPropertySetter
!= null)
2605
propertyDefinition.
AttachedPropertySetter
.Name,
2609
propertyDefinition.
AttachedPropertySetter
.Invoke(null, new object[] { o, value });
2616
propertyDefinition.
AttachedPropertySetter
.Name,
2794
else if (propertyDefinition.
AttachedPropertySetter
!= null)
2804
propertyDefinition.
AttachedPropertySetter
,
5843
else if (this.
AttachedPropertySetter
!= null)
5845
return XamlTypeMapper.GetPropertyType(this.
AttachedPropertySetter
);
5867
else if (this.
AttachedPropertySetter
!= null)
5869
return this.
AttachedPropertySetter
.Name.Substring("Set".Length);
5900
(object)this.
AttachedPropertySetter
;