15 references to DependencyPropertyHelper
PresentationFramework (15)
src\Framework\MS\Internal\Documents\TextBoxView.cs (2)
3063BaseValueSource textAlignmentSource = DependencyPropertyHelper.GetValueSource(host, TextBox.TextAlignmentProperty).BaseValueSource; 3064BaseValueSource horizontalAlignmentSource = DependencyPropertyHelper.GetValueSource(host, TextBox.HorizontalContentAlignmentProperty).BaseValueSource;
src\Framework\System\Windows\Controls\Calendar.cs (1)
508if (DependencyPropertyHelper.GetValueSource(d, Calendar.FirstDayOfWeekProperty).BaseValueSource == BaseValueSource.Default)
src\Framework\System\Windows\Controls\DataGridHelper.cs (4)
337return DependencyPropertyHelper.GetValueSource(d, dp).BaseValueSource == BaseValueSource.Default; 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\ItemsControl.cs (2)
84BaseValueSource baseValueSource = DependencyPropertyHelper.GetValueSource(d, VirtualizingStackPanel.ScrollUnitProperty).BaseValueSource; 106BaseValueSource baseValueSource = DependencyPropertyHelper.GetValueSource(d, VirtualizingStackPanel.CacheLengthUnitProperty).BaseValueSource;
src\Framework\System\Windows\Controls\Primitives\Popup.cs (1)
175System.Windows.ValueSource vs = DependencyPropertyHelper.GetValueSource(Child, TextOptions.TextRenderingModeProperty);
src\Framework\System\Windows\Documents\Run.cs (1)
145ValueSource textPropertySource = DependencyPropertyHelper.GetValueSource(this, TextProperty);
src\Framework\System\windows\Documents\TextSelection.cs (2)
1500System.Windows.DependencyPropertyHelper.GetValueSource(element, inheritableProperties[i]).BaseValueSource != BaseValueSource.Inherited) 1510System.Windows.DependencyPropertyHelper.GetValueSource(element, noninheritableProperties[i]).BaseValueSource != BaseValueSource.Inherited)
src\Framework\System\Windows\FrameworkElement.cs (1)
2437System.Windows.ValueSource vs = DependencyPropertyHelper.GetValueSource(this, TextOptions.TextRenderingModeProperty);