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