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