9 instantiations of DependencyPropertyValueSource
System.Activities.Presentation (9)
System.Activities.Presentation\System\Activities\Presentation\Base\Core\PropertyEditing\DependencyPropertyValueSource.cs (9)
30if (_dataBound == null) _dataBound = new DependencyPropertyValueSource(ValueSource.DataBound); 40if (_systemResource == null) _systemResource = new DependencyPropertyValueSource(ValueSource.SystemResource); 50if (_localDynamicResource == null) _localDynamicResource = new DependencyPropertyValueSource(ValueSource.LocalDynamicResource); 60if (_localStaticResource == null) _localStaticResource = new DependencyPropertyValueSource(ValueSource.LocalStaticResource); 70if (_templateBinding == null) _templateBinding = new DependencyPropertyValueSource(ValueSource.TemplateBinding); 80if (_customMarkupExtension == null) _customMarkupExtension = new DependencyPropertyValueSource(ValueSource.CustomMarkupExtension); 90if (_local == null) _local = new DependencyPropertyValueSource(ValueSource.Local); 101if (_defaultValue == null) _defaultValue = new DependencyPropertyValueSource(ValueSource.DefaultValue); 111if (_inherited == null) _inherited = new DependencyPropertyValueSource(ValueSource.Inherited);
32 references to DependencyPropertyValueSource
System.Activities.Presentation (32)
System.Activities.Presentation\System\Activities\Presentation\Base\Core\Internal\PropertyEditing\ExtensibilityAccessor.cs (9)
620source = DependencyPropertyValueSource.SystemResource; 624source = DependencyPropertyValueSource.LocalStaticResource; 628source = DependencyPropertyValueSource.LocalDynamicResource; 632source = DependencyPropertyValueSource.TemplateBinding; 636source = DependencyPropertyValueSource.DataBound; 640source = DependencyPropertyValueSource.CustomMarkupExtension; 650source = DependencyPropertyValueSource.Local; 659source = DependencyPropertyValueSource.DefaultValue; 663source = DependencyPropertyValueSource.Inherited;
System.Activities.Presentation\System\Activities\Presentation\Base\Core\Internal\PropertyEditing\Model\ModelPropertyEntry.cs (1)
1140_source = _source ?? DependencyPropertyValueSource.Local;
System.Activities.Presentation\System\Activities\Presentation\Base\Core\Internal\PropertyEditing\Model\ModelPropertyEntryBase.cs (2)
111DependencyPropertyValueSource source = this.Source as DependencyPropertyValueSource;
System.Activities.Presentation\System\Activities\Presentation\Base\Core\Internal\PropertyEditing\Model\ModelPropertyIndexer.cs (1)
175get { return DependencyPropertyValueSource.Local; }
System.Activities.Presentation\System\Activities\Presentation\Base\Core\Internal\PropertyEditing\Model\ModelPropertyValue.cs (1)
65return Source == DependencyPropertyValueSource.DefaultValue;
System.Activities.Presentation\System\Activities\Presentation\Base\Core\PropertyEditing\DependencyPropertyValueSource.cs (18)
13private static DependencyPropertyValueSource _dataBound; 14private static DependencyPropertyValueSource _systemResource; 15private static DependencyPropertyValueSource _localDynamicResource; 16private static DependencyPropertyValueSource _localStaticResource; 17private static DependencyPropertyValueSource _templateBinding; 18private static DependencyPropertyValueSource _customMarkupExtension; 19private static DependencyPropertyValueSource _local; 20private static DependencyPropertyValueSource _defaultValue; 21private static DependencyPropertyValueSource _inherited; 28public static DependencyPropertyValueSource DataBound { 38public static DependencyPropertyValueSource SystemResource { 48public static DependencyPropertyValueSource LocalDynamicResource { 58public static DependencyPropertyValueSource LocalStaticResource { 68public static DependencyPropertyValueSource TemplateBinding { 78public static DependencyPropertyValueSource CustomMarkupExtension { 88public static DependencyPropertyValueSource Local { 99public static DependencyPropertyValueSource DefaultValue { 109public static DependencyPropertyValueSource Inherited {