// // System.Windows.Drawing.Brushes.cs // // Author: // Dennis Hayes (dennish@Raytek.com) // Suesan Chaney // // (C) Ximian, Inc., 2002 // using System; namespace System.Drawing { public sealed class Brushes { private Brushes() { } public static Brush AliceBlue{ get{ return new SolidBrush( Color.AliceBlue ); } } public static Brush AntiqueWhite{ get{ return new SolidBrush( Color.AntiqueWhite ); } } public static Brush Aqua{ get{ return new SolidBrush( Color.Aqua ); } } public static Brush Aquamarine{ get{ return new SolidBrush( Color.Aquamarine ); } } public static Brush Azure{ get{ return new SolidBrush( Color.Azure ); } } public static Brush Beige{ get{ return new SolidBrush( Color.Beige ); } } public static Brush Bisque{ get{ return new SolidBrush( Color.Bisque ); } } public static Brush Black{ get{ return new SolidBrush( Color.Black ); } } public static Brush BlanchedAlmond{ get{ return new SolidBrush( Color.BlanchedAlmond ); } } public static Brush Blue{ get{ return new SolidBrush( Color.Blue ); } } public static Brush BlueViolet{ get{ return new SolidBrush( Color.BlueViolet ); } } public static Brush Brown{ get{ return new SolidBrush( Color.Brown ); } } public static Brush BurlyWood{ get{ return new SolidBrush( Color.BurlyWood ); } } public static Brush CadetBlue{ get{ return new SolidBrush( Color.CadetBlue ); } } public static Brush Chartreuse{ get{ return new SolidBrush( Color.Chartreuse ); } } public static Brush Chocolate{ get{ return new SolidBrush( Color.Chocolate ); } } public static Brush Coral{ get{ return new SolidBrush( Color.Coral ); } } public static Brush CornflowerBlue{ get{ return new SolidBrush( Color.CornflowerBlue ); } } public static Brush Cornsilk{ get{ return new SolidBrush( Color.Cornsilk ); } } public static Brush Crimson{ get{ return new SolidBrush( Color.Crimson ); } } public static Brush Cyan{ get{ return new SolidBrush( Color.Cyan ); } } public static Brush DarkBlue{ get{ return new SolidBrush( Color.DarkBlue ); } } public static Brush DarkCyan{ get{ return new SolidBrush( Color.DarkCyan ); } } public static Brush DarkGoldenrod{ get{ return new SolidBrush( Color.DarkGoldenrod ); } } public static Brush DarkGray{ get{ return new SolidBrush( Color.DarkGray ); } } public static Brush DarkGreen{ get{ return new SolidBrush( Color.DarkGreen ); } } public static Brush DarkKhaki{ get{ return new SolidBrush( Color.DarkKhaki ); } } public static Brush DarkMagenta{ get{ return new SolidBrush( Color.DarkMagenta ); } } public static Brush DarkOliveGreen { get{ return new SolidBrush( Color.DarkOliveGreen ); } } public static Brush DarkOrange{ get{ return new SolidBrush( Color.DarkOrange ); } } public static Brush DarkOrchid{ get{ return new SolidBrush( Color.DarkOrchid ); } } public static Brush DarkRed{ get{ return new SolidBrush( Color.DarkRed ); } } public static Brush DarkSalmon{ get{ return new SolidBrush( Color.DarkSalmon ); } } public static Brush DarkSeaGreen{ get{ return new SolidBrush( Color.DarkSeaGreen ); } } public static Brush DarkSlateBlue{ get{ return new SolidBrush( Color.DarkSlateBlue ); } } public static Brush DarkSlateGray{ get{ return new SolidBrush( Color.DarkSlateGray ); } } public static Brush DarkTurquoise{ get{ return new SolidBrush( Color.DarkTurquoise ); } } public static Brush DarkViolet{ get{ return new SolidBrush( Color.DarkViolet ); } } public static Brush DeepPink{ get{ return new SolidBrush( Color.DeepPink ); } } public static Brush DeepSkyBlue{ get{ return new SolidBrush( Color.DeepSkyBlue ); } } public static Brush DimGray{ get{ return new SolidBrush( Color.DimGray ); } } public static Brush DodgerBlue{ get{ return new SolidBrush( Color.DodgerBlue ); } } public static Brush Firebrick{ get{ return new SolidBrush( Color.Firebrick ); } } public static Brush FloralWhite{ get{ return new SolidBrush( Color.FloralWhite ); } } public static Brush ForestGreen{ get{ return new SolidBrush( Color.ForestGreen ); } } public static Brush Fuchsia{ get{ return new SolidBrush( Color.Fuchsia ); } } public static Brush Gainsboro { get{ return new SolidBrush( Color.Gainsboro ); } } public static Brush GhostWhite{ get{ return new SolidBrush( Color.GhostWhite ); } } public static Brush Gold{ get{ return new SolidBrush( Color.Gold ); } } public static Brush Goldenrod{ get{ return new SolidBrush( Color.Goldenrod ); } } public static Brush Gray{ get{ return new SolidBrush( Color.Gray ); } } public static Brush Green{ get{ return new SolidBrush( Color.Green ); } } public static Brush GreenYellow{ get{ return new SolidBrush( Color.GreenYellow ); } } public static Brush Honeydew{ get{ return new SolidBrush( Color.Honeydew ); } } public static Brush HotPink{ get{ return new SolidBrush( Color.HotPink ); } } public static Brush IndianRed{ get{ return new SolidBrush( Color.IndianRed ); } } public static Brush Indigo{ get{ return new SolidBrush( Color.Indigo ); } } public static Brush Ivory{ get{ return new SolidBrush( Color.Ivory ); } } public static Brush Khaki{ get{ return new SolidBrush( Color.Khaki ); } } public static Brush Lavender{ get{ return new SolidBrush( Color.Lavender ); } } public static Brush LavenderBlush{ get{ return new SolidBrush( Color.LavenderBlush ); } } public static Brush LawnGreen{ get{ return new SolidBrush( Color.LawnGreen ); } } public static Brush LemonChiffon{ get{ return new SolidBrush( Color.LemonChiffon ); } } public static Brush LightBlue{ get{ return new SolidBrush( Color.LightBlue ); } } public static Brush LightCoral{ get{ return new SolidBrush( Color.LightCoral ); } } public static Brush LightCyan{ get{ return new SolidBrush( Color.LightCyan ); } } public static Brush LightGoldenrodYellow{ get{ return new SolidBrush( Color.LightGoldenrodYellow ); } } public static Brush LightGray{ get{ return new SolidBrush( Color.LightGray ); } } public static Brush LightGreen{ get{ return new SolidBrush( Color.LightGreen ); } } public static Brush LightPink{ get{ return new SolidBrush( Color.LightPink ); } } public static Brush LightSalmon{ get{ return new SolidBrush( Color.LightSalmon ); } } public static Brush LightSeaGreen{ get{ return new SolidBrush( Color.LightSeaGreen ); } } public static Brush LightSkyBlue{ get{ return new SolidBrush( Color.LightSkyBlue ); } } public static Brush LightSlateGray{ get{ return new SolidBrush( Color.LightSlateGray ); } } public static Brush LightSteelBlue{ get{ return new SolidBrush( Color.LightSteelBlue ); } } public static Brush LightYellow{ get{ return new SolidBrush( Color.LightYellow ); } } public static Brush Lime{ get{ return new SolidBrush( Color.Lime ); } } public static Brush LimeGreen{ get{ return new SolidBrush( Color.LimeGreen ); } } public static Brush Linen{ get{ return new SolidBrush( Color.Linen ); } } public static Brush Magenta{ get{ return new SolidBrush( Color.Magenta ); } } public static Brush Maroon{ get{ return new SolidBrush( Color.Maroon ); } } public static Brush MediumAquamarine{ get{ return new SolidBrush( Color.MediumAquamarine ); } } public static Brush MediumBlue{ get{ return new SolidBrush( Color.MediumBlue ); } } public static Brush MediumOrchid{ get{ return new SolidBrush( Color.MediumOrchid ); } } public static Brush MediumPurple{ get{ return new SolidBrush( Color.MediumPurple ); } } public static Brush MediumSeaGreen{ get{ return new SolidBrush( Color.MediumSeaGreen ); } } public static Brush MediumSlateBlue{ get{ return new SolidBrush( Color.MediumSlateBlue ); } } public static Brush MediumSpringGreen{ get{ return new SolidBrush( Color.MediumSpringGreen ); } } public static Brush MediumTurquoise{ get{ return new SolidBrush( Color.MediumTurquoise ); } } public static Brush MediumVioletRed{ get{ return new SolidBrush( Color.MediumVioletRed ); } } public static Brush MidnightBlue{ get{ return new SolidBrush( Color.MidnightBlue ); } } public static Brush MintCream{ get{ return new SolidBrush( Color.MintCream ); } } public static Brush MistyRose{ get{ return new SolidBrush( Color.MistyRose ); } } public static Brush Moccasin{ get{ return new SolidBrush( Color.Moccasin ); } } public static Brush NavajoWhite{ get{ return new SolidBrush( Color.NavajoWhite ); } } public static Brush Navy{ get{ return new SolidBrush( Color.Navy ); } } public static Brush OldLace{ get{ return new SolidBrush( Color.OldLace ); } } public static Brush Olive{ get{ return new SolidBrush( Color.Olive ); } } public static Brush OliveDrab{ get{ return new SolidBrush( Color.OliveDrab ); } } public static Brush Orange{ get{ return new SolidBrush( Color.Orange ); } } public static Brush OrangeRed{ get{ return new SolidBrush( Color.OrangeRed ); } } public static Brush Orchid{ get{ return new SolidBrush( Color.Orchid ); } } public static Brush PaleGoldenrod{ get{ return new SolidBrush( Color.PaleGoldenrod ); } } public static Brush PaleGreen{ get{ return new SolidBrush( Color.PaleGreen ); } } public static Brush PaleTurquoise{ get{ return new SolidBrush( Color.PaleTurquoise ); } } public static Brush PaleVioletRed{ get{ return new SolidBrush( Color.PaleVioletRed ); } } public static Brush PapayaWhip{ get{ return new SolidBrush( Color.PapayaWhip ); } } public static Brush PeachPuff{ get{ return new SolidBrush( Color.PeachPuff ); } } public static Brush Peru{ get{ return new SolidBrush( Color.Peru ); } } public static Brush Pink{ get{ return new SolidBrush( Color.Pink ); } } public static Brush Plum{ get{ return new SolidBrush( Color.Plum ); } } public static Brush PowderBlue{ get{ return new SolidBrush( Color.PowderBlue ); } } public static Brush Purple{ get{ return new SolidBrush( Color.Purple ); } } public static Brush Red{ get{ return new SolidBrush( Color.Red ); } } public static Brush RosyBrown{ get{ return new SolidBrush( Color.RosyBrown ); } } public static Brush RoyalBlue{ get{ return new SolidBrush( Color.RoyalBlue ); } } public static Brush SaddleBrown{ get{ return new SolidBrush( Color.SaddleBrown ); } } public static Brush Salmon{ get{ return new SolidBrush( Color.Salmon ); } } public static Brush SandyBrown{ get{ return new SolidBrush( Color.SandyBrown ); } } public static Brush SeaGreen{ get{ return new SolidBrush( Color.SeaGreen ); } } public static Brush SeaShell{ get{ return new SolidBrush( Color.SeaShell ); } } public static Brush Sienna{ get{ return new SolidBrush( Color.Sienna ); } } public static Brush Silver{ get{ return new SolidBrush( Color.Silver ); } } public static Brush SkyBlue{ get{ return new SolidBrush( Color.SkyBlue ); } } public static Brush SlateBlue{ get{ return new SolidBrush( Color.SlateBlue ); } } public static Brush SlateGray{ get{ return new SolidBrush( Color.SlateGray ); } } public static Brush Snow{ get{ return new SolidBrush( Color.Snow ); } } public static Brush SpringGreen{ get{ return new SolidBrush( Color.SpringGreen ); } } public static Brush SteelBlue{ get{ return new SolidBrush( Color.SteelBlue ); } } public static Brush Tan{ get{ return new SolidBrush( Color.Tan ); } } public static Brush Teal{ get{ return new SolidBrush( Color.Teal ); } } public static Brush Thistle{ get{ return new SolidBrush( Color.Thistle ); } } public static Brush Tomato{ get{ return new SolidBrush( Color.Tomato ); } } public static Brush Transparent{ get{ return new SolidBrush( Color.Transparent ); } } public static Brush Turquoise{ get{ return new SolidBrush( Color.Turquoise ); } } public static Brush Violet{ get{ return new SolidBrush( Color.Violet ); } } public static Brush Wheat{ get{ return new SolidBrush( Color.Wheat ); } } public static Brush White{ get{ return new SolidBrush( Color.White ); } } public static Brush WhiteSmoke{ get{ return new SolidBrush( Color.WhiteSmoke ); } } public static Brush Yellow{ get{ return new SolidBrush( Color.Yellow ); } } public static Brush YellowGreen{ get{ return new SolidBrush( Color.YellowGreen ); } } } }