瀏覽代碼

* SystemColors.cs: Make Highlight colour match colour from windows
classic color scheme.

svn path=/trunk/mcs/; revision=32161

Jackson Harper 21 年之前
父節點
當前提交
74be589a7b

+ 5 - 0
mcs/class/System.Drawing/System.Drawing/ChangeLog

@@ -1,3 +1,8 @@
+2004-08-10  Jackson Harper  <[email protected]>
+
+	* SystemColors.cs: Make Highlight colour match colour from windows
+	classic color scheme.
+
 2004-07-30 Ravindra <[email protected]>
 
 	* Font.cs: Fixed Height property implementation and implemented

+ 1 - 1
mcs/class/System.Drawing/System.Drawing/SystemColors.cs

@@ -129,7 +129,7 @@ namespace System.Drawing {
 		static public Color Highlight
 		{	
 			get {
-				return Color.FromArgbSystem (255, 79, 101, 125, "Highlight", KnownColor.Highlight);
+				return Color.FromArgbSystem (255, 0, 0, 128, "Highlight", KnownColor.Highlight);
 			}
 		}