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