6 references to GhostWhite
System.Drawing.Common.Tests (6)
System\Drawing\BrushesTests.cs (1)
57yield return Brush(() => Brushes.GhostWhite, Color.GhostWhite);
System\Drawing\Drawing2D\LinearGradientBrushTests.cs (2)
69Assert.Throws<OutOfMemoryException>(() => new LinearGradientBrush(new Point(x, y), new Point(x, y), Color.Fuchsia, Color.GhostWhite)); 70Assert.Throws<OutOfMemoryException>(() => new LinearGradientBrush(new PointF(x, y), new PointF(x, y), Color.Fuchsia, Color.GhostWhite));
System\Drawing\PensTests.cs (1)
59yield return Pen(() => Pens.GhostWhite, Color.GhostWhite);
System\Drawing\SolidBrushTests.cs (2)
80SolidBrush brush = new(Color.Goldenrod) { Color = Color.GhostWhite }; 81Assert.Equal(Color.GhostWhite, brush.Color);