* Added ControlDark and ControlDarkDark brushes
authorPeter Dennis Bartok <pbartok@mono-cvs.ximian.com>
Tue, 25 Nov 2003 08:56:47 +0000 (08:56 -0000)
committerPeter Dennis Bartok <pbartok@mono-cvs.ximian.com>
Tue, 25 Nov 2003 08:56:47 +0000 (08:56 -0000)
svn path=/trunk/mcs/; revision=20421

mcs/class/System.Drawing/System.Drawing/SystemBrushes.cs

index f417e89204deda97dfe7b4a695fe53c7ea8e3b48..0c040b0eefcaa9111cb8ebf1b7055b4a1727e5ac 100644 (file)
@@ -65,6 +65,18 @@ namespace System.Drawing
                        }
                }
 
+               public static Brush ControlDark {
+                       get {
+                               return new SolidBrush(SystemColors.ControlDark);
+                       }
+               }
+               
+               public static Brush ControlDarkDark {
+                       get {
+                               return new SolidBrush(SystemColors.ControlDarkDark);
+                       }
+               }
+
                public static Brush ControlText {
                        get {
                                return new SolidBrush(SystemColors.ControlText);