38 references to PropertyValueType
PresentationFramework (38)
System\Windows\DataTrigger.cs (4)
168case PropertyValueType.Trigger: 169propertyValue.ValueType = PropertyValueType.DataTrigger; 171case PropertyValueType.PropertyTriggerResource: 172propertyValue.ValueType = PropertyValueType.DataTriggerResource;
System\Windows\FrameworkElementFactory.cs (10)
244UpdatePropertyValueList( dp, PropertyValueType.Set, value ); 248UpdatePropertyValueList( dp, PropertyValueType.TemplateBinding, templateBinding ); 253UpdatePropertyValueList(dp, PropertyValueType.Resource, resourceKey); 283UpdatePropertyValueList( dp, PropertyValueType.Resource, name ); 403PropertyValueType valueType, 515if (propertyValue.ValueType == PropertyValueType.Set && 809if (propertyValue.ValueType == PropertyValueType.Set) 1244(propertyValue.ValueType == PropertyValueType.Set || 1245propertyValue.ValueType == PropertyValueType.Resource || 1246propertyValue.ValueType == PropertyValueType.TemplateBinding))
System\Windows\Markup\Primitives\FrameworkElementFactoryMarkupObject.cs (3)
189case PropertyValueType.Set: 190case PropertyValueType.TemplateBinding: 192case PropertyValueType.Resource:
System\Windows\MultiDataTrigger.cs (4)
126case PropertyValueType.Trigger: 127propertyValue.ValueType = PropertyValueType.DataTrigger; 129case PropertyValueType.PropertyTriggerResource: 130propertyValue.ValueType = PropertyValueType.DataTriggerResource;
System\Windows\Style.cs (3)
425PropertyValueType valueType, 645UpdatePropertyValueList( setter.Property, PropertyValueType.Set, setter.ValueInternal ); 649UpdatePropertyValueList( setter.Property, PropertyValueType.Resource, dynamicResource.ResourceKey );
System\Windows\StyleHelper.cs (1)
5707internal PropertyValueType ValueType;
System\Windows\TemplateContent.cs (10)
251ValueType = PropertyValueType.Set, 267value.ValueType = PropertyValueType.TemplateBinding; 273value.ValueType = PropertyValueType.Resource; 1143ValueType = PropertyValueType.Set 1246ValueType = PropertyValueType.TemplateBinding, 1269ValueType = PropertyValueType.TemplateBinding, 1287ValueType = PropertyValueType.TemplateBinding, 1305ValueType = PropertyValueType.TemplateBinding, 1347ValueType = PropertyValueType.TemplateBinding, 1368ValueType = PropertyValueType.TemplateBinding,
System\Windows\TriggerBase.cs (3)
207internal void AddToPropertyValues(string childName, DependencyProperty dp, object value, PropertyValueType valueType) 292AddToPropertyValues(target, dp, value, PropertyValueType.Trigger); 296AddToPropertyValues(target, dp, dynamicResource.ResourceKey, PropertyValueType.PropertyTriggerResource);