38 references to PropertyValueType
PresentationFramework (38)
System\Windows\DataTrigger.cs (4)
170case PropertyValueType.Trigger: 171propertyValue.ValueType = PropertyValueType.DataTrigger; 173case PropertyValueType.PropertyTriggerResource: 174propertyValue.ValueType = PropertyValueType.DataTriggerResource;
System\Windows\FrameworkElementFactory.cs (10)
256UpdatePropertyValueList( dp, PropertyValueType.Set, value ); 260UpdatePropertyValueList( dp, PropertyValueType.TemplateBinding, templateBinding ); 265UpdatePropertyValueList(dp, PropertyValueType.Resource, resourceKey); 295UpdatePropertyValueList( dp, PropertyValueType.Resource, name ); 415PropertyValueType valueType, 525if (propertyValue.ValueType == PropertyValueType.Set && 819if (propertyValue.ValueType == PropertyValueType.Set) 1254(propertyValue.ValueType == PropertyValueType.Set || 1255propertyValue.ValueType == PropertyValueType.Resource || 1256propertyValue.ValueType == PropertyValueType.TemplateBinding))
System\Windows\Markup\Primitives\FrameworkElementFactoryMarkupObject.cs (3)
195case PropertyValueType.Set: 196case PropertyValueType.TemplateBinding: 198case PropertyValueType.Resource:
System\Windows\MultiDataTrigger.cs (4)
131case PropertyValueType.Trigger: 132propertyValue.ValueType = PropertyValueType.DataTrigger; 134case PropertyValueType.PropertyTriggerResource: 135propertyValue.ValueType = PropertyValueType.DataTriggerResource;
System\Windows\Style.cs (3)
444PropertyValueType valueType, 671UpdatePropertyValueList( setter.Property, PropertyValueType.Set, setter.ValueInternal ); 675UpdatePropertyValueList( setter.Property, PropertyValueType.Resource, dynamicResource.ResourceKey );
System\Windows\StyleHelper.cs (1)
5717internal PropertyValueType ValueType;
System\Windows\TemplateContent.cs (10)
253pv.ValueType = PropertyValueType.Set; 268value.ValueType = PropertyValueType.TemplateBinding; 274value.ValueType = PropertyValueType.Resource; 1149propertyValue.ValueType = PropertyValueType.Set; 1250pv.ValueType = PropertyValueType.TemplateBinding; 1271pv.ValueType = PropertyValueType.TemplateBinding; 1287pv.ValueType = PropertyValueType.TemplateBinding; 1303pv.ValueType = PropertyValueType.TemplateBinding; 1343propertyValue.ValueType = PropertyValueType.TemplateBinding; 1362propertyValue.ValueType = PropertyValueType.TemplateBinding;
System\Windows\TriggerBase.cs (3)
212internal void AddToPropertyValues(string childName, DependencyProperty dp, object value, PropertyValueType valueType) 301AddToPropertyValues(target, dp, value, PropertyValueType.Trigger); 305AddToPropertyValues(target, dp, dynamicResource.ResourceKey, PropertyValueType.PropertyTriggerResource);