1 instantiation of ValueSource
PresentationFramework (1)
src\Framework\System\Windows\DependencyPropertyHelper.cs (1)
184
return new
ValueSource
(source, isExpression, isAnimated, isCoerced, isCurrent);
15 references to ValueSource
PresentationFramework (15)
src\Framework\System\Windows\Controls\DataGridHelper.cs (3)
392
var
propertySource = DependencyPropertyHelper.GetValueSource(baseObject, baseProperty);
397
var
parentPropertySource = DependencyPropertyHelper.GetValueSource(parentObject, parentProperty);
408
var
grandParentPropertySource = DependencyPropertyHelper.GetValueSource(grandParentObject, grandParentProperty);
src\Framework\System\Windows\Controls\DataGridRow.cs (1)
507
ValueSource
valueSource = DependencyPropertyHelper.GetValueSource(objectWithProperty, property);
src\Framework\System\Windows\Controls\Primitives\Popup.cs (1)
175
System.Windows.
ValueSource
vs = DependencyPropertyHelper.GetValueSource(Child, TextOptions.TextRenderingModeProperty);
src\Framework\System\Windows\DependencyPropertyHelper.cs (8)
123
if (o is
ValueSource
)
125
ValueSource
that = (
ValueSource
)o;
141
public static bool operator==(
ValueSource
vs1,
ValueSource
vs2)
149
public static bool operator!=(
ValueSource
vs1,
ValueSource
vs2)
172
public static
ValueSource
GetValueSource(DependencyObject dependencyObject, DependencyProperty dependencyProperty)
src\Framework\System\Windows\Documents\Run.cs (1)
145
ValueSource
textPropertySource = DependencyPropertyHelper.GetValueSource(this, TextProperty);
src\Framework\System\Windows\FrameworkElement.cs (1)
2437
System.Windows.
ValueSource
vs = DependencyPropertyHelper.GetValueSource(this, TextOptions.TextRenderingModeProperty);