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)
2057
else if (propertyDefinition.
AttachedPropertySetter
!= null)
2060
PushContext(ReaderFlags.PropertyComplexClr, propertyDefinition.
AttachedPropertySetter
, propertyDefinition.PropertyType, 0);
2252
else if (propertyDefinition.
AttachedPropertySetter
!= null)
2254
propertyDefinition.
AttachedPropertySetter
.Invoke(null, new object[] { element, valueObject });
2582
else if (propertyDefinition.
AttachedPropertySetter
!= null)
2589
propertyDefinition.
AttachedPropertySetter
.Name,
2593
propertyDefinition.
AttachedPropertySetter
.Invoke(null, new object[] { o, value });
2600
propertyDefinition.
AttachedPropertySetter
.Name,
2778
else if (propertyDefinition.
AttachedPropertySetter
!= null)
2788
propertyDefinition.
AttachedPropertySetter
,
5819
else if (this.
AttachedPropertySetter
!= null)
5821
return XamlTypeMapper.GetPropertyType(this.
AttachedPropertySetter
);
5843
else if (this.
AttachedPropertySetter
!= null)
5845
return this.
AttachedPropertySetter
.Name.Substring("Set".Length);
5876
(object)this.
AttachedPropertySetter
;