38 references to PropertyValueType
PresentationFramework (38)
System\Windows\DataTrigger.cs (4)
167case PropertyValueType.Trigger: 168propertyValue.ValueType = PropertyValueType.DataTrigger; 170case PropertyValueType.PropertyTriggerResource: 171propertyValue.ValueType = PropertyValueType.DataTriggerResource;
System\Windows\FrameworkElementFactory.cs (10)
243UpdatePropertyValueList( dp, PropertyValueType.Set, value ); 247UpdatePropertyValueList( dp, PropertyValueType.TemplateBinding, templateBinding ); 252UpdatePropertyValueList(dp, PropertyValueType.Resource, resourceKey); 282UpdatePropertyValueList( dp, PropertyValueType.Resource, name ); 402PropertyValueType valueType, 514if (propertyValue.ValueType == PropertyValueType.Set && 808if (propertyValue.ValueType == PropertyValueType.Set) 1243(propertyValue.ValueType == PropertyValueType.Set || 1244propertyValue.ValueType == PropertyValueType.Resource || 1245propertyValue.ValueType == PropertyValueType.TemplateBinding))
System\Windows\Markup\Primitives\FrameworkElementFactoryMarkupObject.cs (3)
188case PropertyValueType.Set: 189case PropertyValueType.TemplateBinding: 191case PropertyValueType.Resource:
System\Windows\MultiDataTrigger.cs (4)
125case PropertyValueType.Trigger: 126propertyValue.ValueType = PropertyValueType.DataTrigger; 128case PropertyValueType.PropertyTriggerResource: 129propertyValue.ValueType = PropertyValueType.DataTriggerResource;
System\Windows\Style.cs (3)
424PropertyValueType valueType, 644UpdatePropertyValueList( setter.Property, PropertyValueType.Set, setter.ValueInternal ); 648UpdatePropertyValueList( setter.Property, PropertyValueType.Resource, dynamicResource.ResourceKey );
System\Windows\StyleHelper.cs (1)
5706internal PropertyValueType ValueType;
System\Windows\TemplateContent.cs (10)
250ValueType = PropertyValueType.Set, 266value.ValueType = PropertyValueType.TemplateBinding; 272value.ValueType = PropertyValueType.Resource; 1140ValueType = PropertyValueType.Set 1243ValueType = PropertyValueType.TemplateBinding, 1266ValueType = PropertyValueType.TemplateBinding, 1284ValueType = PropertyValueType.TemplateBinding, 1302ValueType = PropertyValueType.TemplateBinding, 1344ValueType = PropertyValueType.TemplateBinding, 1365ValueType = PropertyValueType.TemplateBinding,
System\Windows\TriggerBase.cs (3)
206internal void AddToPropertyValues(string childName, DependencyProperty dp, object value, PropertyValueType valueType) 291AddToPropertyValues(target, dp, value, PropertyValueType.Trigger); 295AddToPropertyValues(target, dp, dynamicResource.ResourceKey, PropertyValueType.PropertyTriggerResource);