13 references to White
System.Drawing.Common.Tests (6)
System\Drawing\BrushesTests.cs (1)
147
yield return Brush(() => Brushes.
White
, Color.White);
System\Drawing\GraphicsTests.cs (2)
2784
graphics.DrawString("Test text", SystemFonts.DefaultFont, Brushes.
White
, default(Point));
2796
() => graphics.DrawString("Test text", SystemFonts.DefaultFont, Brushes.
White
, default(Point)));
System\Drawing\Imaging\Effects\EffectsTests.cs (1)
13
graphics.FillRectangle(Brushes.
White
, new(default, bitmap.Size));
System\Drawing\Imaging\ImageAttributesTests.cs (2)
132
graphicsSmallBitmap.FillRectangle(Brushes.
White
, 0, 0, 100, 100);
134
graphicsBigBitmap.FillRectangle(Brushes.
White
, 0, 0, 200, 100);
System.Windows.Forms (3)
System\Windows\Forms\Control.cs (1)
8126
e.Graphics.FillRectangle(Brushes.
White
, rectangle);
System\Windows\Forms\Rendering\ControlPaint.cs (2)
1277
Brush brush = Brushes.
White
;
1492
? enabled ? (s_grabBrushPrimary ??= Brushes.
White
) : SystemBrushes.Control
System.Windows.Forms.Design (3)
System\Windows\Forms\Design\ControlDesigner.cs (3)
2271
e.Graphics.FillRectangle(Brushes.
White
, clientRectangle);
2284
e.Graphics.FillRectangle(Brushes.
White
, imageRect);
2291
e.Graphics.FillRectangle(Brushes.
White
, textRect);
System.Windows.Forms.Primitives (1)
System\Windows\Forms\GdiPlus\GdiPlusCache.cs (1)
86
KnownColor.White => Brushes.
White
,