3 overrides of BackgroundBrush
PresentationCore (1)
Core\CSharp\MS\Internal\TextFormatting\GenericTextProperties.cs (1)
161public override Brush BackgroundBrush
PresentationFramework (2)
src\Framework\MS\Internal\Text\TextProperties.cs (1)
75public override Brush BackgroundBrush { get { return _backgroundBrush; } }
src\Framework\MS\Internal\Text\TextSpanModifier.cs (1)
220public override Brush BackgroundBrush
7 references to BackgroundBrush
PresentationCore (6)
Core\CSharp\MS\Internal\TextFormatting\FormattedTextSymbols.cs (1)
448get { return _shapeable.Properties.BackgroundBrush; }
Core\CSharp\MS\Internal\TextFormatting\GenericTextProperties.cs (2)
108&& ((_backgroundBrush == null) ? (textRunProperties.BackgroundBrush == null) : (_backgroundBrush.Equals(textRunProperties.BackgroundBrush)))
Core\CSharp\MS\Internal\TextFormatting\SimpleTextLine.cs (1)
1845glyphRun.EmitBackground(drawingContext, TextRun.Properties.BackgroundBrush);
Core\CSharp\MS\Internal\TextFormatting\TextMarkerSource.cs (1)
97defaultRunProperties.BackgroundBrush,
Core\CSharp\MS\Internal\TextFormatting\TextShapeableCharacters.cs (1)
265glyphRun.EmitBackground(drawingContext, _properties.BackgroundBrush);
PresentationFramework (1)
src\Framework\MS\Internal\Text\TextSpanModifier.cs (1)
222get { return _runProperties.BackgroundBrush; }