10 references to YellowGreen
System.Drawing (10)
commonui\System\Drawing\Color.cs (2)
1309return new Color(KnownColor.YellowGreen); 1455return IsKnownColor && ((((KnownColor) knownColor) <= KnownColor.WindowText) || (((KnownColor) knownColor) > KnownColor.YellowGreen));
commonui\System\Drawing\KnownColorTable.cs (2)
207values[(int)KnownColor.YellowGreen] = unchecked((int)0xFF9ACD32); 398values[(int)KnownColor.YellowGreen] = "YellowGreen";
commonui\System\Drawing\SystemBrushes.cs (3)
373systemBrushes = new Brush[(int)KnownColor.WindowText + (int)KnownColor.MenuHighlight - (int)KnownColor.YellowGreen]; 377if (idx > (int)KnownColor.YellowGreen) { 378idx -= (int)KnownColor.YellowGreen - (int)KnownColor.WindowText;
commonui\System\Drawing\SystemPens.cs (3)
373systemPens = new Pen[(int)KnownColor.WindowText + (int)KnownColor.MenuHighlight - (int)KnownColor.YellowGreen]; 378if (idx > (int)KnownColor.YellowGreen) { 379idx -= (int)KnownColor.YellowGreen - (int)KnownColor.WindowText;