13 references to WindowText
System.Drawing (12)
commonui\System\Drawing\Advanced\ColorTranslator.cs (4)
120case KnownColor.WindowText: 203return Color.FromKnownColor(KnownColor.WindowText); 324case KnownColor.WindowText: colorString = "windowtext"; break; 373htmlSysColorTable["windowtext"] = Color.FromKnownColor(KnownColor.WindowText);
commonui\System\Drawing\Color.cs (1)
1455return IsKnownColor && ((((KnownColor) knownColor) <= KnownColor.WindowText) || (((KnownColor) knownColor) > KnownColor.YellowGreen));
commonui\System\Drawing\KnownColorTable.cs (2)
256values[(int)KnownColor.WindowText] = "WindowText"; 478colorTable[(int)KnownColor.WindowText] = SystemColorToArgb((int)SafeNativeMethods.Win32SystemColors.WindowText);
commonui\System\Drawing\SystemBrushes.cs (2)
373systemBrushes = new Brush[(int)KnownColor.WindowText + (int)KnownColor.MenuHighlight - (int)KnownColor.YellowGreen]; 378idx -= (int)KnownColor.YellowGreen - (int)KnownColor.WindowText;
commonui\System\Drawing\SystemColors.cs (1)
375return new Color(KnownColor.WindowText);
commonui\System\Drawing\SystemPens.cs (2)
373systemPens = new Pen[(int)KnownColor.WindowText + (int)KnownColor.MenuHighlight - (int)KnownColor.YellowGreen]; 379idx -= (int)KnownColor.YellowGreen - (int)KnownColor.WindowText;
System.Web (1)
UI\WebControls\WebColorConverter.cs (1)
163t["windowtext"] = Color.FromKnownColor(KnownColor.WindowText);