211 instantiations of SolidColorBrush
Microsoft.CodeAnalysis.EditorFeatures.Wpf (11)
Adornments\BrushTag.cs (1)
32=> _brush ??= new SolidColorBrush(this.GetColor(view, _editorFormatMap) ?? s_lightGray);
InlineDiagnostics\InlineDiagnosticsFormatDefinition.cs (5)
37BackgroundBrush = new SolidColorBrush(Color.FromRgb(252, 62, 54)); 38ForegroundBrush = new SolidColorBrush(Color.FromRgb(0, 0, 0)); 57BackgroundBrush = new SolidColorBrush(Color.FromRgb(149, 219, 125)); 58ForegroundBrush = new SolidColorBrush(Color.FromRgb(0, 0, 0)); 78ForegroundBrush = new SolidColorBrush(Color.FromRgb(0, 0, 0));
InlineHints\InlineHintsFormatDefinition.cs (2)
35this.ForegroundBrush = new SolidColorBrush(Color.FromRgb(104, 104, 104)); 36this.BackgroundBrush = new SolidColorBrush(Color.FromRgb(230, 230, 230));
InlineRename\HighlightTags\RenameFieldBackgroundAndBorderTagDefinition.cs (1)
27this.Border = new Pen(new SolidColorBrush(Color.FromRgb(0xFF, 0xFF, 0xFF)), thickness: 2.0);
PreviewWarningTagDefinition.cs (1)
27this.Border = new Pen(new SolidColorBrush(Color.FromRgb(230, 117, 64)), thickness: 1.5);
ReferenceHighlighting\DefinitionHighlightTagDefinition.cs (1)
27this.Border = new Pen(new SolidColorBrush(Colors.Gray), 0.5);
Microsoft.VisualStudio.LanguageServices (6)
ChangeSignature\ChangeSignatureDialog.xaml.cs (6)
63ParameterText = SystemParameters.HighContrast ? SystemColors.WindowTextBrush : new SolidColorBrush(Color.FromArgb(0xFF, 0x1E, 0x1E, 0x1E)); 64RemovedParameterText = SystemParameters.HighContrast ? SystemColors.WindowTextBrush : new SolidColorBrush(Colors.Gray); 65DisabledParameterBackground = SystemParameters.HighContrast ? SystemColors.WindowBrush : new SolidColorBrush(Color.FromArgb(0xFF, 0xDF, 0xE7, 0xF3)); 66DisabledParameterForeground = SystemParameters.HighContrast ? SystemColors.GrayTextBrush : new SolidColorBrush(Color.FromArgb(0xFF, 0xA2, 0xA4, 0xA5)); 67Members.Background = SystemParameters.HighContrast ? SystemColors.WindowBrush : new SolidColorBrush(Color.FromArgb(0xFF, 0xFF, 0xFF, 0xFF)); 68StrikethroughBrush = SystemParameters.HighContrast ? SystemColors.WindowTextBrush : new SolidColorBrush(Colors.Red);
PresentationCore (9)
MS\Internal\TextFormatting\SimpleTextLine.cs (1)
1748foregroundBrush = new SolidColorBrush(Color.FromArgb(
System\Windows\Ink\Stroke2.cs (2)
391SolidColorBrush brush = new SolidColorBrush(drawingAttributes.Color); 429SolidColorBrush brush = new SolidColorBrush(drawingAttributes.Color);
System\Windows\Input\Stylus\Common\DynamicRenderer.cs (1)
52SolidColorBrush brush = new SolidColorBrush(color);
System\Windows\Media\Generated\SolidColorBrush.cs (1)
98return new SolidColorBrush();
System\Windows\Media\Knowncolors.cs (1)
217scp = new SolidColorBrush(Color.FromUInt32(argb));
System\Windows\Media\Parsers.cs (3)
259return (new SolidColorBrush(ParseHexColor(trimmedColor))); 264return (new SolidColorBrush(ParseContextColor(trimmedColor, formatProvider, context))); 269return (new SolidColorBrush(ParseScRgbColor(trimmedColor, formatProvider)));
PresentationFramework (26)
MS\Internal\Annotations\Component\AnnotationHighlightLayer.cs (2)
1181return new SolidColorBrush(_activeOwners[0].SelectedBackground); 1184return _owners.Count > 0 ? new SolidColorBrush(_owners[0].Background) : null;
MS\Internal\Annotations\Component\HighlightComponent.cs (3)
251HighlightBrush = new SolidColorBrush(_background); 339HighlightBrush = new SolidColorBrush(_selectedBackground); 341HighlightBrush = new SolidColorBrush(_background);
MS\Internal\Annotations\Component\MarkedHighlightComponent.cs (2)
555MarkerBrush = new SolidColorBrush(DefaultMarkerColor); 563MarkerBrush = new SolidColorBrush(DefaultActiveMarkerColor);
MS\Internal\Controls\InkCanvasSelectionAdorner.cs (1)
41_adornerPenBrush = new Pen(new SolidColorBrush(Color.FromRgb(132, 146, 222)), 1);
MS\Internal\Documents\TextBoxView.cs (1)
538context.DrawRectangle(new SolidColorBrush(Color.FromArgb(0, 0, 0, 0)), null, new Rect(0, 0, this.RenderSize.Width, this.RenderSize.Height));
MS\Internal\Ink\LassoHelper.cs (2)
299_brush = new SolidColorBrush(DotColor); 306_pen = new Pen(new SolidColorBrush(DotCircumferenceColor), DotCircumferenceThickness);
MS\Internal\Ink\PenCursorManager.cs (1)
447SolidColorBrush brush2 = new SolidColorBrush(Color.FromRgb(180, 207, 248));
MS\Internal\PtsHost\MbpInfo.cs (1)
92_borderBrush = new SolidColorBrush();
System\Windows\Controls\GridViewHeaderRowPresenter.cs (1)
1157border.SetValue(Border.BackgroundProperty, new SolidColorBrush(Color.FromUInt32(0xFF000080)));
System\Windows\Controls\Primitives\TextBoxBase.cs (2)
1926Brush selectionBrush = new SolidColorBrush(SystemColors.HighlightColor); 1936Brush selectionTextBrush = new SolidColorBrush(SystemColors.HighlightTextColor);
System\Windows\Documents\ColumnResizeAdorner.cs (1)
36_pen = new Pen(new SolidColorBrush(Colors.LightSlateGray), 2.0);
System\Windows\Documents\CompositionAdorner.cs (2)
182Pen pen = new Pen(new SolidColorBrush(Colors.Black), lineHeight); 246pen.Brush = new SolidColorBrush(compositionLine.LineColor);
System\windows\Documents\SelectionHighlightInfo.cs (1)
29_objectMaskBrush = new SolidColorBrush(SystemColors.HighlightColor);
System\windows\Documents\TextSelection.cs (1)
1660caretBrush = new SolidColorBrush(Color.FromRgb(r, g, b));
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
9124bamlType.DefaultConstructor = delegate() { return new System.Windows.Media.SolidColorBrush(); };
System\Windows\Markup\KnownTypes.cs (1)
1542case KnownElements.SolidColorBrush: o = new System.Windows.Media.SolidColorBrush(); break;
System\Windows\SystemColors.cs (2)
2317brush = new SolidColorBrush(GetSystemColor(slot)); 2339brush = new SolidColorBrush(GetAccentColor(slot));
System\Windows\SystemParameters.cs (1)
5691var glassBrush = new SolidColorBrush(WindowGlassColor);
PresentationFramework.Aero (32)
Microsoft\Windows\Themes\BulletChrome.cs (13)
907temp.Brush = new SolidColorBrush(Colors.White); 931temp.Brush = new SolidColorBrush(Colors.White); 954temp.Brush = new SolidColorBrush(Color.FromRgb(0xA2, 0xAE, 0xB9)); 977temp.Brush = new SolidColorBrush(Color.FromRgb(0x19, 0x3B, 0x55)); 1126SolidColorBrush temp = new SolidColorBrush(Color.FromRgb(0xAE, 0xB7, 0xCF)); 1146SolidColorBrush temp = new SolidColorBrush(Color.FromRgb(0x31, 0x34, 0x7C)); 1168SolidColorBrush temp = new SolidColorBrush(Color.FromRgb(0x31, 0x34, 0x7C)); 1312SolidColorBrush temp = new SolidColorBrush(Color.FromRgb(0xDE, 0xF9, 0xFA)); 1332SolidColorBrush temp = new SolidColorBrush(Color.FromRgb(0xC2, 0xE4, 0xF6)); 1352SolidColorBrush temp = new SolidColorBrush(Color.FromRgb(0xF4, 0xF4, 0xF4)); 1374temp.Brush = new SolidColorBrush(Color.FromRgb(0x3C, 0x7F, 0xB1)); 1396temp.Brush = new SolidColorBrush(Color.FromRgb(0x2C, 0x62, 0x8B)); 1418temp.Brush = new SolidColorBrush(Color.FromRgb(0xAD, 0xB2, 0xB5));
Microsoft\Windows\Themes\ButtonChrome.cs (5)
745SolidColorBrush temp = new SolidColorBrush(Color.FromRgb(0xF4, 0xF4, 0xF4)); 808temp.Brush = new SolidColorBrush(Color.FromRgb(0x3C, 0x7F, 0xB1)); 830temp.Brush = new SolidColorBrush(Color.FromRgb(0x2C, 0x62, 0x8B)); 853temp.Brush = new SolidColorBrush(Color.FromRgb(0xAD, 0xB2, 0xB5)); 955temp.Brush = new SolidColorBrush(Color.FromArgb(0xF9, 0x00, 0xCC, 0xFF));
Microsoft\Windows\Themes\DataGridHeaderBorder.cs (4)
208sideBrush = new SolidColorBrush(Color.FromArgb(0xFF, 0x96, 0xD9, 0xF9)); 285bottomBrush = new SolidColorBrush(Color.FromArgb(0xFF, 0xD5, 0xD5, 0xD5)); 289bottomBrush = new SolidColorBrush(Color.FromArgb(0xFF, 0x93, 0xC9, 0xE3)); 293bottomBrush = new SolidColorBrush(Color.FromArgb(0xFF, 0x96, 0xD9, 0xF9));
Microsoft\Windows\Themes\ListBoxChrome.cs (2)
509SolidColorBrush temp = new SolidColorBrush(Color.FromRgb(0xF4, 0xF4, 0xF4)); 602temp.Brush = new SolidColorBrush(Color.FromRgb(0xAD, 0xB2, 0xB5));
Microsoft\Windows\Themes\ScrollChrome.cs (7)
1078temp.Brush = new SolidColorBrush(Color.FromRgb(0x95, 0x95, 0x95)); 1102temp.Brush = new SolidColorBrush(Color.FromRgb(0x3C, 0x7F, 0xB1)); 1126temp.Brush = new SolidColorBrush(Color.FromRgb(0x15, 0x59, 0x8A)); 1205temp.Brush = new SolidColorBrush(Colors.White); 1276temp.Brush = new SolidColorBrush(Color.FromRgb(0xCF, 0xCF, 0xCF)); 1726SolidColorBrush temp = new SolidColorBrush(Colors.White); 1763_localResources.GlyphShadow = new SolidColorBrush(Colors.White);
src\Microsoft.DotNet.Wpf\src\Themes\Shared\Microsoft\Windows\Themes\SystemDropShadowChrome.cs (1)
327brushes[Center] = new SolidColorBrush(c);
PresentationFramework.Aero2 (32)
Microsoft\Windows\Themes\BulletChrome.cs (13)
907temp.Brush = new SolidColorBrush(Colors.White); 931temp.Brush = new SolidColorBrush(Colors.White); 954temp.Brush = new SolidColorBrush(Color.FromRgb(0xA2, 0xAE, 0xB9)); 977temp.Brush = new SolidColorBrush(Color.FromRgb(0x19, 0x3B, 0x55)); 1126SolidColorBrush temp = new SolidColorBrush(Color.FromRgb(0xAE, 0xB7, 0xCF)); 1146SolidColorBrush temp = new SolidColorBrush(Color.FromRgb(0x31, 0x34, 0x7C)); 1168SolidColorBrush temp = new SolidColorBrush(Color.FromRgb(0x31, 0x34, 0x7C)); 1312SolidColorBrush temp = new SolidColorBrush(Color.FromRgb(0xDE, 0xF9, 0xFA)); 1332SolidColorBrush temp = new SolidColorBrush(Color.FromRgb(0xC2, 0xE4, 0xF6)); 1352SolidColorBrush temp = new SolidColorBrush(Color.FromRgb(0xF4, 0xF4, 0xF4)); 1374temp.Brush = new SolidColorBrush(Color.FromRgb(0x3C, 0x7F, 0xB1)); 1396temp.Brush = new SolidColorBrush(Color.FromRgb(0x2C, 0x62, 0x8B)); 1418temp.Brush = new SolidColorBrush(Color.FromRgb(0xAD, 0xB2, 0xB5));
Microsoft\Windows\Themes\ButtonChrome.cs (5)
745SolidColorBrush temp = new SolidColorBrush(Color.FromRgb(0xF4, 0xF4, 0xF4)); 808temp.Brush = new SolidColorBrush(Color.FromRgb(0x3C, 0x7F, 0xB1)); 830temp.Brush = new SolidColorBrush(Color.FromRgb(0x2C, 0x62, 0x8B)); 853temp.Brush = new SolidColorBrush(Color.FromRgb(0xAD, 0xB2, 0xB5)); 955temp.Brush = new SolidColorBrush(Color.FromArgb(0xF9, 0x00, 0xCC, 0xFF));
Microsoft\Windows\Themes\DataGridHeaderBorder.cs (4)
208sideBrush = new SolidColorBrush(Color.FromArgb(0xFF, 0x96, 0xD9, 0xF9)); 285bottomBrush = new SolidColorBrush(Color.FromArgb(0xFF, 0xD5, 0xD5, 0xD5)); 289bottomBrush = new SolidColorBrush(Color.FromArgb(0xFF, 0x93, 0xC9, 0xE3)); 293bottomBrush = new SolidColorBrush(Color.FromArgb(0xFF, 0x96, 0xD9, 0xF9));
Microsoft\Windows\Themes\ListBoxChrome.cs (2)
509SolidColorBrush temp = new SolidColorBrush(Color.FromRgb(0xF4, 0xF4, 0xF4)); 602temp.Brush = new SolidColorBrush(Color.FromRgb(0xAD, 0xB2, 0xB5));
Microsoft\Windows\Themes\ScrollChrome.cs (7)
1078temp.Brush = new SolidColorBrush(Color.FromRgb(0x95, 0x95, 0x95)); 1102temp.Brush = new SolidColorBrush(Color.FromRgb(0x3C, 0x7F, 0xB1)); 1126temp.Brush = new SolidColorBrush(Color.FromRgb(0x15, 0x59, 0x8A)); 1205temp.Brush = new SolidColorBrush(Colors.White); 1276temp.Brush = new SolidColorBrush(Color.FromRgb(0xCF, 0xCF, 0xCF)); 1726SolidColorBrush temp = new SolidColorBrush(Colors.White); 1763_localResources.GlyphShadow = new SolidColorBrush(Colors.White);
src\Microsoft.DotNet.Wpf\src\Themes\Shared\Microsoft\Windows\Themes\SystemDropShadowChrome.cs (1)
327brushes[Center] = new SolidColorBrush(c);
PresentationFramework.AeroLite (13)
Microsoft\Windows\Themes\DataGridHeaderBorder.cs (5)
77background = new SolidColorBrush(); 129sideBrush = new SolidColorBrush(Color.FromArgb(0xFF, 0xDE, 0xDF, 0xE1)); 133sideBrush = new SolidColorBrush(Color.FromArgb(0xFF, 0x4F, 0x90, 0xAE)); 137sideBrush = new SolidColorBrush(Color.FromArgb(0xFF, 0x69, 0xBB, 0xE3)); 229arrowFill = new SolidColorBrush(Color.FromArgb(0xFF, 0x00, 0x00, 0x00));
Microsoft\Windows\Themes\ScrollChrome.cs (7)
281SolidColorBrush temp = new SolidColorBrush(Color.FromArgb(0xFF, 0xDD, 0xDD, 0xDD)); 301SolidColorBrush temp = new SolidColorBrush(Color.FromArgb(0xFF, 0xBD, 0xE6, 0xFD)); 321SolidColorBrush temp = new SolidColorBrush(Color.FromArgb(0xFF, 0xBD, 0xE6, 0xFD)); 369temp.Brush = new SolidColorBrush(Color.FromRgb(0xA3, 0xA3, 0xA3)); 393temp.Brush = new SolidColorBrush(Color.FromRgb(0x21, 0xA1, 0xC4)); 417temp.Brush = new SolidColorBrush(Color.FromRgb(0x00, 0x73, 0x94)); 463SolidColorBrush temp = new SolidColorBrush(Color.FromArgb(0xFF, 0x00, 0x00, 0x00));
src\Microsoft.DotNet.Wpf\src\Themes\Shared\Microsoft\Windows\Themes\SystemDropShadowChrome.cs (1)
327brushes[Center] = new SolidColorBrush(c);
PresentationFramework.Classic (5)
Microsoft\Windows\Themes\ClassicBorderDecorator.cs (4)
429decorator._brushCache.LightLightBrush = new SolidColorBrush(GetControlLightLightColor(controlColor)); 432decorator._brushCache.DarkBrush = new SolidColorBrush(darkColor); 441decorator._brushCache.DarkDarkBrush = new SolidColorBrush(darkDarkColor); 517SolidColorBrush temp = new SolidColorBrush();
src\Microsoft.DotNet.Wpf\src\Themes\Shared\Microsoft\Windows\Themes\SystemDropShadowChrome.cs (1)
327brushes[Center] = new SolidColorBrush(c);
PresentationFramework.Fluent (1)
Controls\FallbackBrushConverter.cs (1)
19return new SolidColorBrush(color);
PresentationFramework.Luna (49)
Microsoft\Windows\Themes\ButtonChrome.cs (6)
557SolidColorBrush brush = new SolidColorBrush(Color.FromArgb(0xFF, 0xC9, 0xC7, 0xBA)); 581SolidColorBrush brush = new SolidColorBrush(Color.FromArgb(0xFF, 0xCA, 0xC4, 0xB8)); 606SolidColorBrush brush = new SolidColorBrush(Color.FromArgb(0xFF, 0xC4, 0xC3, 0xBF)); 1263SolidColorBrush temp = new SolidColorBrush(Color.FromArgb(0xFF, 0xF5, 0xF4, 0xEA)); 1284SolidColorBrush temp = new SolidColorBrush(Color.FromArgb(0xFF, 0xF6, 0xF2, 0xE9)); 1305SolidColorBrush temp = new SolidColorBrush(Color.FromArgb(0xFF, 0xF1, 0xF1, 0xED));
Microsoft\Windows\Themes\DataGridHeaderBorder.cs (3)
201SolidColorBrush tabStrokeBrush = new SolidColorBrush((themeColor == ThemeColor.Homestead) ? Color.FromArgb(0xFF, 0xCF, 0x72, 0x25) : Color.FromArgb(0xFF, 0xF8, 0xA9, 0x00)); 244border = new SolidColorBrush((themeColor == ThemeColor.Metallic) ? Color.FromArgb(0xFF, 0x80, 0x80, 0x99) : Color.FromArgb(0xFF, 0xA5, 0xA5, 0x97)); 352arrowFill = new SolidColorBrush(Color.FromArgb(0xFF, 0xAC, 0xA8, 0x99));
Microsoft\Windows\Themes\ScrollChrome.cs (35)
1380SolidColorBrush temp = new SolidColorBrush(Color.FromArgb(0xFF, 0xC9, 0xC9, 0xC2)); 1401SolidColorBrush temp = new SolidColorBrush(Color.FromArgb(0xFF, 0x4D, 0x61, 0x85)); 1430SolidColorBrush temp = new SolidColorBrush(Color.FromArgb(0xFF, 0x3F, 0x3D, 0x3D)); 1451SolidColorBrush temp = new SolidColorBrush(Color.FromArgb(0xFF, 0x20, 0x20, 0x20)); 1472SolidColorBrush temp = new SolidColorBrush(Color.FromArgb(0xFF, 0xEE, 0xF4, 0xFE)); 1493SolidColorBrush temp = new SolidColorBrush(Color.FromArgb(0xFF, 0xFC, 0xFD, 0xFF)); 1514SolidColorBrush temp = new SolidColorBrush(Color.FromArgb(0xFF, 0xCF, 0xDD, 0xFD)); 1535SolidColorBrush temp = new SolidColorBrush(Color.FromArgb(0xFF, 0xD0, 0xDF, 0xAC)); 1556SolidColorBrush temp = new SolidColorBrush(Color.FromArgb(0xFF, 0xEB, 0xF5, 0xD4)); 1577SolidColorBrush temp = new SolidColorBrush(Color.FromArgb(0xFF, 0xB9, 0xD0, 0x97)); 1598SolidColorBrush temp = new SolidColorBrush(Color.FromArgb(0xFF, 0xFF, 0xFF, 0xFF)); 1674SolidColorBrush temp = new SolidColorBrush(Color.FromArgb(0xFF, 0xB9, 0xB9, 0xB2)); 1695SolidColorBrush temp = new SolidColorBrush(Color.FromArgb(0xFF, 0x8C, 0xB0, 0xF8)); 1716SolidColorBrush temp = new SolidColorBrush(Color.FromArgb(0xFF, 0x9C, 0xC5, 0xFF)); 1737SolidColorBrush temp = new SolidColorBrush(Color.FromArgb(0xFF, 0x83, 0x9E, 0xD8)); 1758SolidColorBrush temp = new SolidColorBrush(Color.FromArgb(0xFF, 0x8C, 0x9D, 0x73)); 1779SolidColorBrush temp = new SolidColorBrush(Color.FromArgb(0xFF, 0xB6, 0xC6, 0x8E)); 1800SolidColorBrush temp = new SolidColorBrush(Color.FromArgb(0xFF, 0x7A, 0x8B, 0x63)); 1821SolidColorBrush temp = new SolidColorBrush(Color.FromArgb(0xFF, 0x8E, 0x95, 0xA2)); 1884temp.Brush = new SolidColorBrush(Color.FromArgb(0xFF, 0xFF, 0xFF, 0xFF)); 1906temp.Brush = new SolidColorBrush(Color.FromArgb(0xFF, 0xFF, 0xFF, 0xFF)); 1928temp.Brush = new SolidColorBrush(Color.FromArgb(0xFF, 0x94, 0x95, 0xA2)); 1950temp.Brush = new SolidColorBrush(Color.FromArgb(0xFF, 0x5B, 0x66, 0x65)); 1972temp.Brush = new SolidColorBrush(Color.FromArgb(0xFF, 0x43, 0x48, 0x48)); 2029temp.Brush = new SolidColorBrush(Color.FromArgb(0xFF, 0xE8, 0xE8, 0xDF)); 2051temp.Brush = new SolidColorBrush(Color.FromArgb(0xFF, 0xB4, 0xC8, 0xF6)); 2075temp.Brush = new SolidColorBrush(Color.FromArgb(0xFF, 0x98, 0xB1, 0xE4)); 2097temp.Brush = new SolidColorBrush(Color.FromArgb(0xFF, 0xAC, 0xCE, 0xFF)); 2119temp.Brush = new SolidColorBrush(Color.FromArgb(0xFF, 0x83, 0x8F, 0xDA)); 2141temp.Brush = new SolidColorBrush(Color.FromArgb(0xFF, 0x8E, 0x99, 0x7D)); 2163temp.Brush = new SolidColorBrush(Color.FromArgb(0xFF, 0xBD, 0xCB, 0x96)); 2186temp.Brush = new SolidColorBrush(Color.FromArgb(0xFF, 0x7A, 0x8B, 0x63)); 2208temp.Brush = new SolidColorBrush(Color.FromArgb(0xFF, 0xFF, 0xFF, 0xFF)); 2230temp.Brush = new SolidColorBrush(Color.FromArgb(0xFF, 0xFF, 0xFF, 0xFF)); 2253temp.Brush = new SolidColorBrush(Color.FromArgb(0xFF, 0xFF, 0xFF, 0xFF));
src\Microsoft.DotNet.Wpf\src\Themes\Shared\Microsoft\Windows\Themes\BulletChrome.cs (4)
542SolidColorBrush temp = new SolidColorBrush(Color.FromRgb(0x21, 0xA1, 0x21)); 562SolidColorBrush temp = new SolidColorBrush(Color.FromRgb(0x1A, 0x7E, 0x18)); 641SolidColorBrush temp = new SolidColorBrush(Color.FromRgb(0xCA, 0xC8, 0xBB)); 836SolidColorBrush temp = new SolidColorBrush(Color.FromRgb(0x73, 0xC2, 0x73));
src\Microsoft.DotNet.Wpf\src\Themes\Shared\Microsoft\Windows\Themes\SystemDropShadowChrome.cs (1)
327brushes[Center] = new SolidColorBrush(c);
PresentationFramework.Royale (18)
Microsoft\Windows\Themes\ButtonChrome.cs (1)
472SolidColorBrush brush = new SolidColorBrush(Color.FromArgb(0xFF,0xC6,0xC5,0xC9));
Microsoft\Windows\Themes\DataGridHeaderBorder.cs (3)
130SolidColorBrush tabStrokeBrush = new SolidColorBrush(Color.FromArgb(0xFF, 0xF8, 0xA9, 0x00)); 166border = new SolidColorBrush(Color.FromArgb(0xFF, 0x80, 0x80, 0x99)); 274arrowFill = new SolidColorBrush(Color.FromArgb(0xFF, 0xAC, 0xA8, 0x99));
Microsoft\Windows\Themes\ScrollChrome.cs (9)
829SolidColorBrush temp = new SolidColorBrush(Color.FromArgb(0xFF, 0xB7, 0xCB, 0xE3)); 851SolidColorBrush temp = new SolidColorBrush(Color.FromArgb(0xFF, 0x5B, 0x64, 0x73)); 872SolidColorBrush temp = new SolidColorBrush(Color.FromArgb(0xFF, 0x6B, 0x7B, 0x84)); 893SolidColorBrush temp = new SolidColorBrush(Color.FromArgb(0xFF, 0xFF, 0xFF, 0xFF)); 940SolidColorBrush temp = new SolidColorBrush(Color.FromArgb(0xFF, 0xB9, 0xB9, 0xB2)); 961SolidColorBrush temp = new SolidColorBrush(Color.FromArgb(0xFF, 0x83, 0x97, 0xAF)); 1030temp.Brush = new SolidColorBrush(Color.FromArgb(0xFF, 0x85, 0x99, 0xB1)); 1052temp.Brush = new SolidColorBrush(Color.FromArgb(0xFF, 0x52, 0x66, 0x7E)); 1090temp.Brush = new SolidColorBrush(Color.FromArgb(0xFF, 0xFF, 0xFF, 0xFF));
src\Microsoft.DotNet.Wpf\src\Themes\Shared\Microsoft\Windows\Themes\BulletChrome.cs (4)
542SolidColorBrush temp = new SolidColorBrush(Color.FromRgb(0x21, 0xA1, 0x21)); 562SolidColorBrush temp = new SolidColorBrush(Color.FromRgb(0x1A, 0x7E, 0x18)); 641SolidColorBrush temp = new SolidColorBrush(Color.FromRgb(0xCA, 0xC8, 0xBB)); 836SolidColorBrush temp = new SolidColorBrush(Color.FromRgb(0x73, 0xC2, 0x73));
src\Microsoft.DotNet.Wpf\src\Themes\Shared\Microsoft\Windows\Themes\SystemDropShadowChrome.cs (1)
327brushes[Center] = new SolidColorBrush(c);
ReachFramework (9)
AlphaFlattener\BrushProxy.cs (9)
1450context.PushOpacityMask(new SolidColorBrush(_beforeDrawing)); 1467context.PushOpacityMask(new SolidColorBrush(_afterDrawing)); 1521context.DrawGeometry(new SolidColorBrush(_beforeDrawing), null, geometry); 1586context.DrawGeometry(new SolidColorBrush(_afterDrawing), null, geometry); 2721return CreateBrushCore(new SolidColorBrush(color), Rect.Empty); 2972Brush b = new SolidColorBrush(c); 3511s_EmptyBrush = new BrushProxy(new SolidColorBrush(Color.FromArgb(0, 0, 0, 0))); 3600ctx.DrawRectangle(new SolidColorBrush(brush.BeforeFill), null, rect); 3607ctx.DrawRectangle(new SolidColorBrush(brush.AfterFill), null, rect);
601 references to SolidColorBrush
Microsoft.CodeAnalysis.EditorFeatures.Wpf (5)
LineSeparators\LineSeparatorTag.cs (2)
29var brush = view.VisualElement.TryFindResource("outlining.verticalrule.foreground") as SolidColorBrush;
StringIndentation\StringIndentationTag.cs (2)
36var brush = view.VisualElement.TryFindResource("outlining.verticalrule.foreground") as SolidColorBrush;
Utilities\BrushToColorConverter.cs (1)
17SolidColorBrush solidColorBrush => solidColorBrush.Color,
PresentationCore (166)
MS\Internal\TextFormatting\SimpleTextLine.cs (2)
1745if(visiCodePath && foregroundBrush is SolidColorBrush) 1747Color color = ((SolidColorBrush)foregroundBrush).Color;
System\Windows\Ink\Stroke2.cs (2)
391SolidColorBrush brush = new SolidColorBrush(drawingAttributes.Color); 429SolidColorBrush brush = new SolidColorBrush(drawingAttributes.Color);
System\Windows\Input\Stylus\Common\DynamicRenderer.cs (4)
34SolidColorBrush _fillBrush; // app thread based brushed 52SolidColorBrush brush = new SolidColorBrush(color); 102public SolidColorBrush FillBrush 834SolidColorBrush fillBrush = si.FillBrush;
System\Windows\Media\brushes.cs (141)
33public static SolidColorBrush AliceBlue 44public static SolidColorBrush AntiqueWhite 55public static SolidColorBrush Aqua 66public static SolidColorBrush Aquamarine 77public static SolidColorBrush Azure 88public static SolidColorBrush Beige 99public static SolidColorBrush Bisque 110public static SolidColorBrush Black 121public static SolidColorBrush BlanchedAlmond 132public static SolidColorBrush Blue 143public static SolidColorBrush BlueViolet 154public static SolidColorBrush Brown 165public static SolidColorBrush BurlyWood 176public static SolidColorBrush CadetBlue 187public static SolidColorBrush Chartreuse 198public static SolidColorBrush Chocolate 209public static SolidColorBrush Coral 220public static SolidColorBrush CornflowerBlue 231public static SolidColorBrush Cornsilk 242public static SolidColorBrush Crimson 253public static SolidColorBrush Cyan 264public static SolidColorBrush DarkBlue 275public static SolidColorBrush DarkCyan 286public static SolidColorBrush DarkGoldenrod 297public static SolidColorBrush DarkGray 308public static SolidColorBrush DarkGreen 319public static SolidColorBrush DarkKhaki 330public static SolidColorBrush DarkMagenta 341public static SolidColorBrush DarkOliveGreen 352public static SolidColorBrush DarkOrange 363public static SolidColorBrush DarkOrchid 374public static SolidColorBrush DarkRed 385public static SolidColorBrush DarkSalmon 396public static SolidColorBrush DarkSeaGreen 407public static SolidColorBrush DarkSlateBlue 418public static SolidColorBrush DarkSlateGray 429public static SolidColorBrush DarkTurquoise 440public static SolidColorBrush DarkViolet 451public static SolidColorBrush DeepPink 462public static SolidColorBrush DeepSkyBlue 473public static SolidColorBrush DimGray 484public static SolidColorBrush DodgerBlue 495public static SolidColorBrush Firebrick 506public static SolidColorBrush FloralWhite 517public static SolidColorBrush ForestGreen 528public static SolidColorBrush Fuchsia 539public static SolidColorBrush Gainsboro 550public static SolidColorBrush GhostWhite 561public static SolidColorBrush Gold 572public static SolidColorBrush Goldenrod 583public static SolidColorBrush Gray 594public static SolidColorBrush Green 605public static SolidColorBrush GreenYellow 616public static SolidColorBrush Honeydew 627public static SolidColorBrush HotPink 638public static SolidColorBrush IndianRed 649public static SolidColorBrush Indigo 660public static SolidColorBrush Ivory 671public static SolidColorBrush Khaki 682public static SolidColorBrush Lavender 693public static SolidColorBrush LavenderBlush 704public static SolidColorBrush LawnGreen 715public static SolidColorBrush LemonChiffon 726public static SolidColorBrush LightBlue 737public static SolidColorBrush LightCoral 748public static SolidColorBrush LightCyan 759public static SolidColorBrush LightGoldenrodYellow 770public static SolidColorBrush LightGray 781public static SolidColorBrush LightGreen 792public static SolidColorBrush LightPink 803public static SolidColorBrush LightSalmon 814public static SolidColorBrush LightSeaGreen 825public static SolidColorBrush LightSkyBlue 836public static SolidColorBrush LightSlateGray 847public static SolidColorBrush LightSteelBlue 858public static SolidColorBrush LightYellow 869public static SolidColorBrush Lime 880public static SolidColorBrush LimeGreen 891public static SolidColorBrush Linen 902public static SolidColorBrush Magenta 913public static SolidColorBrush Maroon 924public static SolidColorBrush MediumAquamarine 935public static SolidColorBrush MediumBlue 946public static SolidColorBrush MediumOrchid 957public static SolidColorBrush MediumPurple 968public static SolidColorBrush MediumSeaGreen 979public static SolidColorBrush MediumSlateBlue 990public static SolidColorBrush MediumSpringGreen 1001public static SolidColorBrush MediumTurquoise 1012public static SolidColorBrush MediumVioletRed 1023public static SolidColorBrush MidnightBlue 1034public static SolidColorBrush MintCream 1045public static SolidColorBrush MistyRose 1056public static SolidColorBrush Moccasin 1067public static SolidColorBrush NavajoWhite 1078public static SolidColorBrush Navy 1089public static SolidColorBrush OldLace 1100public static SolidColorBrush Olive 1111public static SolidColorBrush OliveDrab 1122public static SolidColorBrush Orange 1133public static SolidColorBrush OrangeRed 1144public static SolidColorBrush Orchid 1155public static SolidColorBrush PaleGoldenrod 1166public static SolidColorBrush PaleGreen 1177public static SolidColorBrush PaleTurquoise 1188public static SolidColorBrush PaleVioletRed 1199public static SolidColorBrush PapayaWhip 1210public static SolidColorBrush PeachPuff 1221public static SolidColorBrush Peru 1232public static SolidColorBrush Pink 1243public static SolidColorBrush Plum 1254public static SolidColorBrush PowderBlue 1265public static SolidColorBrush Purple 1276public static SolidColorBrush Red 1287public static SolidColorBrush RosyBrown 1298public static SolidColorBrush RoyalBlue 1309public static SolidColorBrush SaddleBrown 1320public static SolidColorBrush Salmon 1331public static SolidColorBrush SandyBrown 1342public static SolidColorBrush SeaGreen 1353public static SolidColorBrush SeaShell 1364public static SolidColorBrush Sienna 1375public static SolidColorBrush Silver 1386public static SolidColorBrush SkyBlue 1397public static SolidColorBrush SlateBlue 1408public static SolidColorBrush SlateGray 1419public static SolidColorBrush Snow 1430public static SolidColorBrush SpringGreen 1441public static SolidColorBrush SteelBlue 1452public static SolidColorBrush Tan 1463public static SolidColorBrush Teal 1474public static SolidColorBrush Thistle 1485public static SolidColorBrush Tomato 1496public static SolidColorBrush Transparent 1507public static SolidColorBrush Turquoise 1518public static SolidColorBrush Violet 1529public static SolidColorBrush Wheat 1540public static SolidColorBrush White 1551public static SolidColorBrush WhiteSmoke 1562public static SolidColorBrush Yellow 1573public static SolidColorBrush YellowGreen
System\Windows\Media\Generated\SolidColorBrush.cs (7)
31public new SolidColorBrush Clone() 33return (SolidColorBrush)base.Clone(); 40public new SolidColorBrush CloneCurrentValue() 42return (SolidColorBrush)base.CloneCurrentValue(); 58SolidColorBrush target = ((SolidColorBrush) d); 308Type typeofThis = typeof(SolidColorBrush);
System\Windows\Media\Knowncolors.cs (6)
184public static SolidColorBrush ColorStringToKnownBrush(string s) 200public static bool IsKnownSolidColorBrush(SolidColorBrush scp) 208public static SolidColorBrush SolidColorBrushFromUint(uint argb) 210SolidColorBrush scp = null; 690private static Dictionary<uint, SolidColorBrush> s_solidColorBrushCache = new Dictionary<uint, SolidColorBrush>();
System\Windows\Media\Parsers.cs (1)
274SolidColorBrush scp = KnownColors.ColorStringToKnownBrush(trimmedColor);
System\Windows\Media\SolidColorBrush.cs (3)
135SolidColorBrush scp = KnownColors.SolidColorBrushFromUint(knownColorUint); 309private static TwoWayDictionary<SolidColorBrush, string> s_knownSolidColorBrushStringCache = new TwoWayDictionary<SolidColorBrush, string>(keyComparer: ReferenceEqualityComparer.Instance);
PresentationFramework (82)
MS\Internal\Ink\PenCursorManager.cs (1)
447SolidColorBrush brush2 = new SolidColorBrush(Color.FromRgb(180, 207, 248));
System\Windows\Annotations\AnnotationHelper.cs (2)
929SolidColorBrush brush = highlightBrush as SolidColorBrush;
System\Windows\Controls\Border.cs (2)
290SolidColorBrush originIndependentBrush = borderBrush as SolidColorBrush;
System\Windows\Controls\ProgressBar.cs (2)
189if (this.Foreground is SolidColorBrush) 191Color color = ((SolidColorBrush)this.Foreground).Color;
System\Windows\Controls\StickyNote.cs (2)
1768SolidColorBrush foreground = Foreground as SolidColorBrush;
System\Windows\Controls\TextRangeAdaptor.cs (2)
1257SolidColorBrush solidBrush = brush as SolidColorBrush;
System\Windows\Documents\FixedSOMTextRun.cs (4)
214SolidColorBrush thisBrush = this.Foreground as SolidColorBrush; 215SolidColorBrush otherBrush = run.Foreground as SolidColorBrush;
System\Windows\Documents\TextSchema.cs (3)
916SolidColorBrush solidBrush1 = brush1 as SolidColorBrush; 919return solidBrush1.Color.Equals(((SolidColorBrush)brush2).Color);
System\windows\Documents\TextSelection.cs (4)
1632backgroundPropertyValue is SolidColorBrush) 1634backgroundColor = ((SolidColorBrush)backgroundPropertyValue).Color; 1648if (backgroundPropertyValue is SolidColorBrush) 1650backgroundColor = ((SolidColorBrush)backgroundPropertyValue).Color;
System\Windows\Documents\TextServicesDisplayAttribute.cs (1)
99return ((SolidColorBrush)position.GetValue(TextElement.ForegroundProperty)).Color;
System\Windows\Markup\Baml2006\Baml2006KnownTypes.cs (1)
672case 578: t = () => typeof(SolidColorBrush); break;
System\Windows\Markup\Baml2006\Baml2006Reader.cs (3)
2523System.Windows.Media.SolidColorBrush brush = System.Windows.Media.SolidColorBrush.DeserializeFrom(binReader) as System.Windows.Media.SolidColorBrush;
System\Windows\Markup\Baml2006\DeferredBinaryDeserializerExtension.cs (1)
38return System.Windows.Media.SolidColorBrush.DeserializeFrom(_reader,
System\Windows\Markup\Baml2006\WpfGeneratedKnownProperties.cs (3)
7869Type type = typeof(System.Windows.Media.SolidColorBrush); 7870DependencyProperty dp = System.Windows.Media.SolidColorBrush.ColorProperty; 7872this.GetXamlType(typeof(System.Windows.Media.SolidColorBrush)), // DeclaringType
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
9122typeof(System.Windows.Media.SolidColorBrush),
System\Windows\Markup\BamlRecords.cs (1)
2773_valueObject = SolidColorBrush.DeserializeFrom(reader, bamlRecordReader.TypeConvertContext);
System\Windows\Markup\KnownTypes.cs (1)
6132case KnownElements.SolidColorBrush: t = typeof(System.Windows.Media.SolidColorBrush); break;
System\Windows\Markup\XamlBrushSerializer.cs (2)
68return SolidColorBrush.SerializeOn(writer, stringValue.Trim()); 91return SolidColorBrush.DeserializeFrom(reader);
System\Windows\SystemColors.cs (45)
1035public static SolidColorBrush ActiveBorderBrush 1046public static SolidColorBrush ActiveCaptionBrush 1057public static SolidColorBrush ActiveCaptionTextBrush 1068public static SolidColorBrush AppWorkspaceBrush 1079public static SolidColorBrush ControlBrush 1090public static SolidColorBrush ControlDarkBrush 1101public static SolidColorBrush ControlDarkDarkBrush 1112public static SolidColorBrush ControlLightBrush 1123public static SolidColorBrush ControlLightLightBrush 1134public static SolidColorBrush ControlTextBrush 1145public static SolidColorBrush DesktopBrush 1156public static SolidColorBrush GradientActiveCaptionBrush 1167public static SolidColorBrush GradientInactiveCaptionBrush 1178public static SolidColorBrush GrayTextBrush 1189public static SolidColorBrush HighlightBrush 1200public static SolidColorBrush HighlightTextBrush 1211public static SolidColorBrush HotTrackBrush 1222public static SolidColorBrush InactiveBorderBrush 1233public static SolidColorBrush InactiveCaptionBrush 1244public static SolidColorBrush InactiveCaptionTextBrush 1255public static SolidColorBrush InfoBrush 1266public static SolidColorBrush InfoTextBrush 1277public static SolidColorBrush MenuBrush 1288public static SolidColorBrush MenuBarBrush 1299public static SolidColorBrush MenuHighlightBrush 1310public static SolidColorBrush MenuTextBrush 1321public static SolidColorBrush ScrollBarBrush 1332public static SolidColorBrush WindowBrush 1343public static SolidColorBrush WindowFrameBrush 1354public static SolidColorBrush WindowTextBrush 1368public static SolidColorBrush InactiveSelectionHighlightBrush 1389public static SolidColorBrush InactiveSelectionHighlightTextBrush 1411public static SolidColorBrush AccentColorBrush 1432public static SolidColorBrush AccentColorLight1Brush 1453public static SolidColorBrush AccentColorLight2Brush 1474public static SolidColorBrush AccentColorLight3Brush 1495public static SolidColorBrush AccentColorDark1Brush 1516public static SolidColorBrush AccentColorDark2Brush 1537public static SolidColorBrush AccentColorDark3Brush 2306private static SolidColorBrush MakeBrush(CacheSlot slot) 2308SolidColorBrush brush; 2329private static SolidColorBrush MakeAccentBrush(CacheSlot slot) 2331SolidColorBrush brush; 2468private static SolidColorBrush[] _brushCache = new SolidColorBrush[(int)CacheSlot.NumSlots];
System\Windows\SystemParameters.cs (1)
5691var glassBrush = new SolidColorBrush(WindowGlassColor);
PresentationFramework.Aero (64)
Microsoft\Windows\Themes\BulletChrome.cs (31)
126chrome.BorderOverlayPen.Brush.BeginAnimation(SolidColorBrush.OpacityProperty, da); 127chrome.BackgroundOverlay.BeginAnimation(SolidColorBrush.OpacityProperty, da); 177chrome.BorderOverlayPen.Brush.BeginAnimation(SolidColorBrush.OpacityProperty, da); 178chrome.BackgroundOverlay.BeginAnimation(SolidColorBrush.OpacityProperty, da); 183chrome.BorderOverlayPen.Brush.BeginAnimation(SolidColorBrush.ColorProperty, ca); 184chrome.BackgroundOverlay.BeginAnimation(SolidColorBrush.ColorProperty, ca); 268chrome.GlyphStroke.Brush.BeginAnimation(SolidColorBrush.OpacityProperty, da); 269chrome.GlyphFill.BeginAnimation(SolidColorBrush.OpacityProperty, da); 344chrome.BorderOverlayPen.Brush.BeginAnimation(SolidColorBrush.ColorProperty, ca); 347chrome.BackgroundOverlay.BeginAnimation(SolidColorBrush.ColorProperty, ca); 519chrome.GlyphStroke.Brush.BeginAnimation(SolidColorBrush.OpacityProperty, da); 520chrome.GlyphFill.BeginAnimation(SolidColorBrush.OpacityProperty, da); 1116private static SolidColorBrush CommonCheckMarkDisabledFill 1126SolidColorBrush temp = new SolidColorBrush(Color.FromRgb(0xAE, 0xB7, 0xCF)); 1136private static SolidColorBrush CommonCheckMarkFill 1146SolidColorBrush temp = new SolidColorBrush(Color.FromRgb(0x31, 0x34, 0x7C)); 1158private static SolidColorBrush CommonCheckMarkPressedFill 1168SolidColorBrush temp = new SolidColorBrush(Color.FromRgb(0x31, 0x34, 0x7C)); 1302private static SolidColorBrush CommonHoverBackgroundOverlay 1312SolidColorBrush temp = new SolidColorBrush(Color.FromRgb(0xDE, 0xF9, 0xFA)); 1322private static SolidColorBrush CommonPressedBackgroundOverlay 1332SolidColorBrush temp = new SolidColorBrush(Color.FromRgb(0xC2, 0xE4, 0xF6)); 1342private static SolidColorBrush CommonDisabledBackgroundOverlay 1352SolidColorBrush temp = new SolidColorBrush(Color.FromRgb(0xF4, 0xF4, 0xF4)); 2354private static SolidColorBrush _commonCheckMarkDisabledFill; 2355private static SolidColorBrush _commonCheckMarkFill; 2356private static SolidColorBrush _commonCheckMarkPressedFill; 2384private static SolidColorBrush _commonDisabledBackgroundOverlay; 2387private static SolidColorBrush _commonHoverBackgroundOverlay; 2393private static SolidColorBrush _commonPressedBackgroundOverlay; 2409public SolidColorBrush BackgroundOverlay;
Microsoft\Windows\Themes\ButtonChrome.cs (15)
133chrome.BorderOverlayPen.Brush.BeginAnimation(SolidColorBrush.OpacityProperty, daukf); 151chrome.BorderOverlayPen.Brush.BeginAnimation(SolidColorBrush.OpacityProperty, da); 209chrome.BorderOverlayPen.Brush.BeginAnimation(SolidColorBrush.OpacityProperty, da); 238chrome.BorderOverlayPen.Brush.BeginAnimation(SolidColorBrush.OpacityProperty, daukf); 247chrome.BackgroundOverlay.BeginAnimation(SolidColorBrush.OpacityProperty, da); 248chrome.BorderOverlayPen.Brush.BeginAnimation(SolidColorBrush.OpacityProperty, da); 298chrome.BackgroundOverlay.BeginAnimation(SolidColorBrush.OpacityProperty, da); 299chrome.BorderOverlayPen.Brush.BeginAnimation(SolidColorBrush.OpacityProperty, da); 318chrome.BorderOverlayPen.Brush.BeginAnimation(SolidColorBrush.ColorProperty, ca); 337chrome.BorderOverlayPen.Brush.BeginAnimation(SolidColorBrush.OpacityProperty, da); 338chrome.BackgroundOverlay.BeginAnimation(SolidColorBrush.OpacityProperty, da); 343chrome.BorderOverlayPen.Brush.BeginAnimation(SolidColorBrush.ColorProperty, ca); 735private static SolidColorBrush CommonDisabledBackgroundOverlay 745SolidColorBrush temp = new SolidColorBrush(Color.FromRgb(0xF4, 0xF4, 0xF4)); 1138private static SolidColorBrush _commonDisabledBackgroundOverlay;
Microsoft\Windows\Themes\DataGridHeaderBorder.cs (2)
279SolidColorBrush bottomBrush = (SolidColorBrush)GetCachedFreezable((int)bottomType);
Microsoft\Windows\Themes\ListBoxChrome.cs (3)
499private static SolidColorBrush CommonDisabledBackgroundOverlay 509SolidColorBrush temp = new SolidColorBrush(Color.FromRgb(0xF4, 0xF4, 0xF4)); 665private static SolidColorBrush _commonDisabledBackgroundOverlay;
Microsoft\Windows\Themes\ScrollChrome.cs (12)
123chrome.OuterBorder.Brush.BeginAnimation(SolidColorBrush.OpacityProperty, da); 129chrome.Shadow.Brush.BeginAnimation(SolidColorBrush.OpacityProperty, da); 161chrome.OuterBorder.Brush.BeginAnimation(SolidColorBrush.OpacityProperty, da); 163chrome.Shadow.Brush.BeginAnimation(SolidColorBrush.OpacityProperty, da); 224chrome.OuterBorder.Brush.BeginAnimation(SolidColorBrush.ColorProperty, ca); 245OuterBorder.Brush.BeginAnimation(SolidColorBrush.ColorProperty, ca); 322chrome.OuterBorder.Brush.BeginAnimation(SolidColorBrush.ColorProperty, ca); 1716private static SolidColorBrush CommonThumbEnabledGlyphShadow 1726SolidColorBrush temp = new SolidColorBrush(Colors.White); 1739private SolidColorBrush GlyphShadow 1783private static SolidColorBrush _commonThumbEnabledGlyphShadow; 1817public SolidColorBrush GlyphShadow;
src\Microsoft.DotNet.Wpf\src\Themes\Shared\Microsoft\Windows\Themes\SystemDropShadowChrome.cs (1)
444if (c == ((SolidColorBrush)_commonBrushes[Center]).Color &&
PresentationFramework.Aero2 (64)
Microsoft\Windows\Themes\BulletChrome.cs (31)
126chrome.BorderOverlayPen.Brush.BeginAnimation(SolidColorBrush.OpacityProperty, da); 127chrome.BackgroundOverlay.BeginAnimation(SolidColorBrush.OpacityProperty, da); 177chrome.BorderOverlayPen.Brush.BeginAnimation(SolidColorBrush.OpacityProperty, da); 178chrome.BackgroundOverlay.BeginAnimation(SolidColorBrush.OpacityProperty, da); 183chrome.BorderOverlayPen.Brush.BeginAnimation(SolidColorBrush.ColorProperty, ca); 184chrome.BackgroundOverlay.BeginAnimation(SolidColorBrush.ColorProperty, ca); 268chrome.GlyphStroke.Brush.BeginAnimation(SolidColorBrush.OpacityProperty, da); 269chrome.GlyphFill.BeginAnimation(SolidColorBrush.OpacityProperty, da); 344chrome.BorderOverlayPen.Brush.BeginAnimation(SolidColorBrush.ColorProperty, ca); 347chrome.BackgroundOverlay.BeginAnimation(SolidColorBrush.ColorProperty, ca); 519chrome.GlyphStroke.Brush.BeginAnimation(SolidColorBrush.OpacityProperty, da); 520chrome.GlyphFill.BeginAnimation(SolidColorBrush.OpacityProperty, da); 1116private static SolidColorBrush CommonCheckMarkDisabledFill 1126SolidColorBrush temp = new SolidColorBrush(Color.FromRgb(0xAE, 0xB7, 0xCF)); 1136private static SolidColorBrush CommonCheckMarkFill 1146SolidColorBrush temp = new SolidColorBrush(Color.FromRgb(0x31, 0x34, 0x7C)); 1158private static SolidColorBrush CommonCheckMarkPressedFill 1168SolidColorBrush temp = new SolidColorBrush(Color.FromRgb(0x31, 0x34, 0x7C)); 1302private static SolidColorBrush CommonHoverBackgroundOverlay 1312SolidColorBrush temp = new SolidColorBrush(Color.FromRgb(0xDE, 0xF9, 0xFA)); 1322private static SolidColorBrush CommonPressedBackgroundOverlay 1332SolidColorBrush temp = new SolidColorBrush(Color.FromRgb(0xC2, 0xE4, 0xF6)); 1342private static SolidColorBrush CommonDisabledBackgroundOverlay 1352SolidColorBrush temp = new SolidColorBrush(Color.FromRgb(0xF4, 0xF4, 0xF4)); 2354private static SolidColorBrush _commonCheckMarkDisabledFill; 2355private static SolidColorBrush _commonCheckMarkFill; 2356private static SolidColorBrush _commonCheckMarkPressedFill; 2384private static SolidColorBrush _commonDisabledBackgroundOverlay; 2387private static SolidColorBrush _commonHoverBackgroundOverlay; 2393private static SolidColorBrush _commonPressedBackgroundOverlay; 2409public SolidColorBrush BackgroundOverlay;
Microsoft\Windows\Themes\ButtonChrome.cs (15)
133chrome.BorderOverlayPen.Brush.BeginAnimation(SolidColorBrush.OpacityProperty, daukf); 151chrome.BorderOverlayPen.Brush.BeginAnimation(SolidColorBrush.OpacityProperty, da); 209chrome.BorderOverlayPen.Brush.BeginAnimation(SolidColorBrush.OpacityProperty, da); 238chrome.BorderOverlayPen.Brush.BeginAnimation(SolidColorBrush.OpacityProperty, daukf); 247chrome.BackgroundOverlay.BeginAnimation(SolidColorBrush.OpacityProperty, da); 248chrome.BorderOverlayPen.Brush.BeginAnimation(SolidColorBrush.OpacityProperty, da); 298chrome.BackgroundOverlay.BeginAnimation(SolidColorBrush.OpacityProperty, da); 299chrome.BorderOverlayPen.Brush.BeginAnimation(SolidColorBrush.OpacityProperty, da); 318chrome.BorderOverlayPen.Brush.BeginAnimation(SolidColorBrush.ColorProperty, ca); 337chrome.BorderOverlayPen.Brush.BeginAnimation(SolidColorBrush.OpacityProperty, da); 338chrome.BackgroundOverlay.BeginAnimation(SolidColorBrush.OpacityProperty, da); 343chrome.BorderOverlayPen.Brush.BeginAnimation(SolidColorBrush.ColorProperty, ca); 735private static SolidColorBrush CommonDisabledBackgroundOverlay 745SolidColorBrush temp = new SolidColorBrush(Color.FromRgb(0xF4, 0xF4, 0xF4)); 1138private static SolidColorBrush _commonDisabledBackgroundOverlay;
Microsoft\Windows\Themes\DataGridHeaderBorder.cs (2)
279SolidColorBrush bottomBrush = (SolidColorBrush)GetCachedFreezable((int)bottomType);
Microsoft\Windows\Themes\ListBoxChrome.cs (3)
499private static SolidColorBrush CommonDisabledBackgroundOverlay 509SolidColorBrush temp = new SolidColorBrush(Color.FromRgb(0xF4, 0xF4, 0xF4)); 665private static SolidColorBrush _commonDisabledBackgroundOverlay;
Microsoft\Windows\Themes\ScrollChrome.cs (12)
123chrome.OuterBorder.Brush.BeginAnimation(SolidColorBrush.OpacityProperty, da); 129chrome.Shadow.Brush.BeginAnimation(SolidColorBrush.OpacityProperty, da); 161chrome.OuterBorder.Brush.BeginAnimation(SolidColorBrush.OpacityProperty, da); 163chrome.Shadow.Brush.BeginAnimation(SolidColorBrush.OpacityProperty, da); 224chrome.OuterBorder.Brush.BeginAnimation(SolidColorBrush.ColorProperty, ca); 245OuterBorder.Brush.BeginAnimation(SolidColorBrush.ColorProperty, ca); 322chrome.OuterBorder.Brush.BeginAnimation(SolidColorBrush.ColorProperty, ca); 1716private static SolidColorBrush CommonThumbEnabledGlyphShadow 1726SolidColorBrush temp = new SolidColorBrush(Colors.White); 1739private SolidColorBrush GlyphShadow 1783private static SolidColorBrush _commonThumbEnabledGlyphShadow; 1817public SolidColorBrush GlyphShadow;
src\Microsoft.DotNet.Wpf\src\Themes\Shared\Microsoft\Windows\Themes\SystemDropShadowChrome.cs (1)
444if (c == ((SolidColorBrush)_commonBrushes[Center]).Color &&
PresentationFramework.AeroLite (19)
Microsoft\Windows\Themes\DataGridHeaderBorder.cs (4)
74SolidColorBrush background = (SolidColorBrush)GetCachedFreezable((int)backgroundType); 226SolidColorBrush arrowFill = (SolidColorBrush)GetCachedFreezable((int)AeroLiteFreezables.ArrowFill);
Microsoft\Windows\Themes\ScrollChrome.cs (14)
271private static SolidColorBrush CommonThumbFill 281SolidColorBrush temp = new SolidColorBrush(Color.FromArgb(0xFF, 0xDD, 0xDD, 0xDD)); 291private static SolidColorBrush CommonThumbHoverFill 301SolidColorBrush temp = new SolidColorBrush(Color.FromArgb(0xFF, 0xBD, 0xE6, 0xFD)); 311private static SolidColorBrush CommonThumbPressedFill 321SolidColorBrush temp = new SolidColorBrush(Color.FromArgb(0xFF, 0xBD, 0xE6, 0xFD)); 331private SolidColorBrush Fill 453private SolidColorBrush CommonThumbEnabledGlyph 463SolidColorBrush temp = new SolidColorBrush(Color.FromArgb(0xFF, 0x00, 0x00, 0x00)); 473private SolidColorBrush Glyph 495private static SolidColorBrush _commonThumbFill; 496private static SolidColorBrush _commonThumbHoverFill; 497private static SolidColorBrush _commonThumbPressedFill; 503private static SolidColorBrush _commonThumbEnabledGlyph;
src\Microsoft.DotNet.Wpf\src\Themes\Shared\Microsoft\Windows\Themes\SystemDropShadowChrome.cs (1)
444if (c == ((SolidColorBrush)_commonBrushes[Center]).Color &&
PresentationFramework.Classic (10)
Microsoft\Windows\Themes\ClassicBorderDecorator.cs (9)
404SolidColorBrush controlBrush = decorator.Background as SolidColorBrush; 517SolidColorBrush temp = new SolidColorBrush(); 920SolidColorBrush solidBrush = borderBrush as SolidColorBrush; 1442public SolidColorBrush LightBrush; 1443public SolidColorBrush LightLightBrush; 1444public SolidColorBrush DarkBrush; 1445public SolidColorBrush DarkDarkBrush;
src\Microsoft.DotNet.Wpf\src\Themes\Shared\Microsoft\Windows\Themes\SystemDropShadowChrome.cs (1)
444if (c == ((SolidColorBrush)_commonBrushes[Center]).Color &&
PresentationFramework.Fluent (1)
Controls\FallbackBrushConverter.cs (1)
12if (value is SolidColorBrush brush)
PresentationFramework.Luna (90)
Microsoft\Windows\Themes\ButtonChrome.cs (12)
557SolidColorBrush brush = new SolidColorBrush(Color.FromArgb(0xFF, 0xC9, 0xC7, 0xBA)); 581SolidColorBrush brush = new SolidColorBrush(Color.FromArgb(0xFF, 0xCA, 0xC4, 0xB8)); 606SolidColorBrush brush = new SolidColorBrush(Color.FromArgb(0xFF, 0xC4, 0xC3, 0xBF)); 1253private static SolidColorBrush CommonDisabledFillNC 1263SolidColorBrush temp = new SolidColorBrush(Color.FromArgb(0xFF, 0xF5, 0xF4, 0xEA)); 1274private static SolidColorBrush CommonDisabledFillHS 1284SolidColorBrush temp = new SolidColorBrush(Color.FromArgb(0xFF, 0xF6, 0xF2, 0xE9)); 1295private static SolidColorBrush CommonDisabledFillM 1305SolidColorBrush temp = new SolidColorBrush(Color.FromArgb(0xFF, 0xF1, 0xF1, 0xED)); 1483private static SolidColorBrush _commonDisabledFillNC; 1484private static SolidColorBrush _commonDisabledFillHS; 1485private static SolidColorBrush _commonDisabledFillM;
Microsoft\Windows\Themes\DataGridHeaderBorder.cs (5)
201SolidColorBrush tabStrokeBrush = new SolidColorBrush((themeColor == ThemeColor.Homestead) ? Color.FromArgb(0xFF, 0xCF, 0x72, 0x25) : Color.FromArgb(0xFF, 0xF8, 0xA9, 0x00)); 241SolidColorBrush border = (SolidColorBrush)GetCachedFreezable((int)LunaFreezables.PressedBorder); 349SolidColorBrush arrowFill = (SolidColorBrush)GetCachedFreezable((int)LunaFreezables.ArrowFill);
Microsoft\Windows\Themes\ScrollChrome.cs (58)
1370private static SolidColorBrush CommonDisabledGlyph 1380SolidColorBrush temp = new SolidColorBrush(Color.FromArgb(0xFF, 0xC9, 0xC9, 0xC2)); 1391private static SolidColorBrush CommonArrowGlyphNC 1401SolidColorBrush temp = new SolidColorBrush(Color.FromArgb(0xFF, 0x4D, 0x61, 0x85)); 1412private static SolidColorBrush CommonArrowGlyphHS 1420private static SolidColorBrush CommonArrowGlyphM 1430SolidColorBrush temp = new SolidColorBrush(Color.FromArgb(0xFF, 0x3F, 0x3D, 0x3D)); 1441private static SolidColorBrush CommonHoverArrowGlyphM 1451SolidColorBrush temp = new SolidColorBrush(Color.FromArgb(0xFF, 0x20, 0x20, 0x20)); 1462private static SolidColorBrush CommonGripperGlyphNC 1472SolidColorBrush temp = new SolidColorBrush(Color.FromArgb(0xFF, 0xEE, 0xF4, 0xFE)); 1483private static SolidColorBrush CommonHoverGripperGlyphNC 1493SolidColorBrush temp = new SolidColorBrush(Color.FromArgb(0xFF, 0xFC, 0xFD, 0xFF)); 1504private static SolidColorBrush CommonPressedGripperGlyphNC 1514SolidColorBrush temp = new SolidColorBrush(Color.FromArgb(0xFF, 0xCF, 0xDD, 0xFD)); 1525private static SolidColorBrush CommonGripperGlyphHS 1535SolidColorBrush temp = new SolidColorBrush(Color.FromArgb(0xFF, 0xD0, 0xDF, 0xAC)); 1546private static SolidColorBrush CommonHoverGripperGlyphHS 1556SolidColorBrush temp = new SolidColorBrush(Color.FromArgb(0xFF, 0xEB, 0xF5, 0xD4)); 1567private static SolidColorBrush CommonPressedGripperGlyphHS 1577SolidColorBrush temp = new SolidColorBrush(Color.FromArgb(0xFF, 0xB9, 0xD0, 0x97)); 1588private static SolidColorBrush CommonGripperGlyphM 1598SolidColorBrush temp = new SolidColorBrush(Color.FromArgb(0xFF, 0xFF, 0xFF, 0xFF)); 1664private static SolidColorBrush CommonDisabledGripperGlyphShadow 1674SolidColorBrush temp = new SolidColorBrush(Color.FromArgb(0xFF, 0xB9, 0xB9, 0xB2)); 1685private static SolidColorBrush CommonGripperGlyphShadowNC 1695SolidColorBrush temp = new SolidColorBrush(Color.FromArgb(0xFF, 0x8C, 0xB0, 0xF8)); 1706private static SolidColorBrush CommonHoverGripperGlyphShadowNC 1716SolidColorBrush temp = new SolidColorBrush(Color.FromArgb(0xFF, 0x9C, 0xC5, 0xFF)); 1727private static SolidColorBrush CommonPressedGripperGlyphShadowNC 1737SolidColorBrush temp = new SolidColorBrush(Color.FromArgb(0xFF, 0x83, 0x9E, 0xD8)); 1748private static SolidColorBrush CommonGripperGlyphShadowHS 1758SolidColorBrush temp = new SolidColorBrush(Color.FromArgb(0xFF, 0x8C, 0x9D, 0x73)); 1769private static SolidColorBrush CommonHoverGripperGlyphShadowHS 1779SolidColorBrush temp = new SolidColorBrush(Color.FromArgb(0xFF, 0xB6, 0xC6, 0x8E)); 1790private static SolidColorBrush CommonPressedGripperGlyphShadowHS 1800SolidColorBrush temp = new SolidColorBrush(Color.FromArgb(0xFF, 0x7A, 0x8B, 0x63)); 1811private static SolidColorBrush CommonGripperGlyphShadowM 1821SolidColorBrush temp = new SolidColorBrush(Color.FromArgb(0xFF, 0x8E, 0x95, 0xA2)); 2469private static SolidColorBrush _commonDisabledGlyph; 2471private static SolidColorBrush _commonArrowGlyphNC; 2472private static SolidColorBrush _commonArrowGlyphM; 2474private static SolidColorBrush _commonHoverArrowGlyphM; 2476private static SolidColorBrush _commonGripperGlyphNC; 2477private static SolidColorBrush _commonHoverGripperGlyphNC; 2478private static SolidColorBrush _commonPressedGripperGlyphNC; 2480private static SolidColorBrush _commonGripperGlyphHS; 2481private static SolidColorBrush _commonHoverGripperGlyphHS; 2482private static SolidColorBrush _commonPressedGripperGlyphHS; 2484private static SolidColorBrush _commonGripperGlyphM; 2486private static SolidColorBrush _commonDisabledGripperGlyphShadow; 2488private static SolidColorBrush _commonGripperGlyphShadowNC; 2489private static SolidColorBrush _commonHoverGripperGlyphShadowNC; 2490private static SolidColorBrush _commonPressedGripperGlyphShadowNC; 2492private static SolidColorBrush _commonGripperGlyphShadowHS; 2493private static SolidColorBrush _commonHoverGripperGlyphShadowHS; 2494private static SolidColorBrush _commonPressedGripperGlyphShadowHS; 2496private static SolidColorBrush _commonGripperGlyphShadowM;
src\Microsoft.DotNet.Wpf\src\Themes\Shared\Microsoft\Windows\Themes\BulletChrome.cs (14)
523private static SolidColorBrush CommonDisabledGlyphFill 532private static SolidColorBrush CommonCheckMarkFill 542SolidColorBrush temp = new SolidColorBrush(Color.FromRgb(0x21, 0xA1, 0x21)); 552private static SolidColorBrush CommonCheckMarkPressedFill 562SolidColorBrush temp = new SolidColorBrush(Color.FromRgb(0x1A, 0x7E, 0x18)); 623private static SolidColorBrush CommonDisabledBackground 631private static SolidColorBrush CommonDisabledBorder 641SolidColorBrush temp = new SolidColorBrush(Color.FromRgb(0xCA, 0xC8, 0xBB)); 826private static SolidColorBrush CommonIndeterminateFill 836SolidColorBrush temp = new SolidColorBrush(Color.FromRgb(0x73, 0xC2, 0x73)); 973private static SolidColorBrush _commonCheckMarkFill; 974private static SolidColorBrush _commonCheckMarkPressedFill; 978private static SolidColorBrush _commonIndeterminateFill; 985private static SolidColorBrush _commonDisabledBorder;
src\Microsoft.DotNet.Wpf\src\Themes\Shared\Microsoft\Windows\Themes\SystemDropShadowChrome.cs (1)
444if (c == ((SolidColorBrush)_commonBrushes[Center]).Color &&
PresentationFramework.Royale (40)
Microsoft\Windows\Themes\ButtonChrome.cs (2)
472SolidColorBrush brush = new SolidColorBrush(Color.FromArgb(0xFF,0xC6,0xC5,0xC9)); 887private static SolidColorBrush CommonDisabledFill
Microsoft\Windows\Themes\DataGridHeaderBorder.cs (5)
130SolidColorBrush tabStrokeBrush = new SolidColorBrush(Color.FromArgb(0xFF, 0xF8, 0xA9, 0x00)); 163SolidColorBrush border = (SolidColorBrush)GetCachedFreezable((int)RoyaleFreezables.PressedBorder); 271SolidColorBrush arrowFill = (SolidColorBrush)GetCachedFreezable((int)RoyaleFreezables.ArrowFill);
Microsoft\Windows\Themes\ScrollChrome.cs (18)
819private static SolidColorBrush CommonDisabledGlyph 829SolidColorBrush temp = new SolidColorBrush(Color.FromArgb(0xFF, 0xB7, 0xCB, 0xE3)); 841private static SolidColorBrush CommonArrowGlyph 851SolidColorBrush temp = new SolidColorBrush(Color.FromArgb(0xFF, 0x5B, 0x64, 0x73)); 862private static SolidColorBrush CommonHoverArrowGlyph 872SolidColorBrush temp = new SolidColorBrush(Color.FromArgb(0xFF, 0x6B, 0x7B, 0x84)); 883private static SolidColorBrush CommonGripperGlyph 893SolidColorBrush temp = new SolidColorBrush(Color.FromArgb(0xFF, 0xFF, 0xFF, 0xFF)); 930private static SolidColorBrush CommonDisabledGripperGlyphShadow 940SolidColorBrush temp = new SolidColorBrush(Color.FromArgb(0xFF, 0xB9, 0xB9, 0xB2)); 951private static SolidColorBrush CommonGripperGlyphShadow 961SolidColorBrush temp = new SolidColorBrush(Color.FromArgb(0xFF, 0x83, 0x97, 0xAF)); 1125private static SolidColorBrush _commonDisabledGlyph; 1127private static SolidColorBrush _commonArrowGlyph; 1129private static SolidColorBrush _commonHoverArrowGlyph; 1131private static SolidColorBrush _commonGripperGlyph; 1134private static SolidColorBrush _commonDisabledGripperGlyphShadow; 1136private static SolidColorBrush _commonGripperGlyphShadow;
src\Microsoft.DotNet.Wpf\src\Themes\Shared\Microsoft\Windows\Themes\BulletChrome.cs (14)
523private static SolidColorBrush CommonDisabledGlyphFill 532private static SolidColorBrush CommonCheckMarkFill 542SolidColorBrush temp = new SolidColorBrush(Color.FromRgb(0x21, 0xA1, 0x21)); 552private static SolidColorBrush CommonCheckMarkPressedFill 562SolidColorBrush temp = new SolidColorBrush(Color.FromRgb(0x1A, 0x7E, 0x18)); 623private static SolidColorBrush CommonDisabledBackground 631private static SolidColorBrush CommonDisabledBorder 641SolidColorBrush temp = new SolidColorBrush(Color.FromRgb(0xCA, 0xC8, 0xBB)); 826private static SolidColorBrush CommonIndeterminateFill 836SolidColorBrush temp = new SolidColorBrush(Color.FromRgb(0x73, 0xC2, 0x73)); 973private static SolidColorBrush _commonCheckMarkFill; 974private static SolidColorBrush _commonCheckMarkPressedFill; 978private static SolidColorBrush _commonIndeterminateFill; 985private static SolidColorBrush _commonDisabledBorder;
src\Microsoft.DotNet.Wpf\src\Themes\Shared\Microsoft\Windows\Themes\SystemDropShadowChrome.cs (1)
444if (c == ((SolidColorBrush)_commonBrushes[Center]).Color &&
ReachFramework (56)
AlphaFlattener\BrushProxy.cs (29)
411if (! (_brush is SolidColorBrush) && ! Utility.IsIdentity(_brush.RelativeTransform)) 604if (_brush is SolidColorBrush) 606SolidColorBrush y = _brush as SolidColorBrush; 693if (_brush is SolidColorBrush) 695SolidColorBrush y = _brush as SolidColorBrush; 788if (!(_brush is SolidColorBrush)) 857SolidColorBrush sA = _brush as SolidColorBrush; 864SolidColorBrush sB = brushB.Brush as SolidColorBrush; 1060else if (_brush is SolidColorBrush) 1112else if (!(_brush is SolidColorBrush)) 1157SolidColorBrush scb = _brush as SolidColorBrush; 1384if (!(_brush is SolidColorBrush)) 2132Debug.Assert(b._brush is SolidColorBrush, "SolidColorBrush expected"); 2203if (brushB is SolidColorBrush) 2605SolidColorBrush sb = brush as SolidColorBrush; 2622SolidColorBrush sb = brush as SolidColorBrush; 2827SolidColorBrush solidBrush = brush as SolidColorBrush; 3281if (brushB.Brush is SolidColorBrush) 3283SolidColorBrush sB = brushB.Brush as SolidColorBrush; 3475if (_brush is SolidColorBrush)
AlphaFlattener\DrawingContext.cs (1)
645if (b is SolidColorBrush)
AlphaFlattener\ImageProxy.cs (6)
261if (brush.Brush is SolidColorBrush) 263SolidColorBrush sb = brush.Brush as SolidColorBrush; 302if (brush.Brush is SolidColorBrush) 304SolidColorBrush sb = brush.Brush as SolidColorBrush;
AlphaFlattener\MetroDevice.cs (4)
180if (!(brush is SolidColorBrush)) 188if (!(pen.Brush is SolidColorBrush)) 196if (g.OpacityMask.BrushList == null && !(g.OpacityMask.Brush is SolidColorBrush)) 274if (foreground != null && !(foreground is SolidColorBrush))
AlphaFlattener\Optimizer.cs (1)
359if ((b != null) && ((b is SolidColorBrush) || (b is LinearGradientBrush)))
AlphaFlattener\Primitive.cs (2)
597SolidColorBrush sb = OpacityMask.Brush as SolidColorBrush;
AlphaFlattener\PrimitiveList.cs (2)
194SolidColorBrush sb = b as SolidColorBrush;
AlphaFlattener\Utility.cs (2)
1101SolidColorBrush sb = brush as SolidColorBrush;
Serialization\VisualSerializer.cs (7)
336SolidColorBrush solidBrush = brush as SolidColorBrush; 687SolidColorBrush sb = brush as SolidColorBrush; 2061if ((foreground is SolidColorBrush) && (_opacityMask == null)) 2247SolidColorBrush sb = opacityMask as SolidColorBrush;
Serialization\VisualTreeFlattener.cs (2)
593SolidColorBrush colorBrush = fixedPage.Background as SolidColorBrush;
WindowsFormsIntegration (4)
System\Windows\Integration\HostUtils.cs (2)
140SWM.SolidColorBrush solid = c as SWM.SolidColorBrush;
System\Windows\Integration\WindowsFormsHostPropertyMap.cs (2)
379SWM.SolidColorBrush solidColorBrush = brush as SWM.SolidColorBrush;