3 overrides of ForegroundBrush
PresentationCore (1)
Core\CSharp\MS\Internal\TextFormatting\GenericTextProperties.cs (1)
152public override Brush ForegroundBrush
PresentationFramework (2)
src\Framework\MS\Internal\Text\TextProperties.cs (1)
70public override Brush ForegroundBrush { get { return _foreground; } }
src\Framework\MS\Internal\Text\TextSpanModifier.cs (1)
215public override Brush ForegroundBrush
10 references to ForegroundBrush
PresentationCore (8)
Core\CSharp\MS\Internal\TextFormatting\FormattedTextSymbols.cs (1)
443get { return _shapeable.Properties.ForegroundBrush; }
Core\CSharp\MS\Internal\TextFormatting\GenericTextProperties.cs (2)
107&& ((_foregroundBrush == null) ? (textRunProperties.ForegroundBrush == null) : (_foregroundBrush.Equals(textRunProperties.ForegroundBrush)))
Core\CSharp\MS\Internal\TextFormatting\LineServicesCallbacks.cs (1)
1178lsrun.RunProp.ForegroundBrush,
Core\CSharp\MS\Internal\TextFormatting\SimpleTextLine.cs (1)
1772Brush foregroundBrush = TextRun.Properties.ForegroundBrush;
Core\CSharp\MS\Internal\TextFormatting\TextMarkerSource.cs (1)
96defaultRunProperties.ForegroundBrush,
Core\CSharp\MS\Internal\TextFormatting\TextProperties.cs (1)
163get { return _paragraphProperties.DefaultTextRunProperties.ForegroundBrush; }
Core\CSharp\MS\Internal\TextFormatting\TextShapeableCharacters.cs (1)
268foregroundBrush != null ? foregroundBrush : _properties.ForegroundBrush,
PresentationFramework (2)
src\Framework\MS\Internal\Text\TextSpanModifier.cs (2)
101if (object.ReferenceEquals(brush, properties.ForegroundBrush)) 217get { return _runProperties.ForegroundBrush; }