4 references to Colors
System.ComponentModel.TypeConverter (4)
src\libraries\Common\src\System\Drawing\ColorConverterCommon.cs (1)
79foreach (Color c in ColorTable.Colors.Values)
src\libraries\Common\src\System\Drawing\ColorTable.cs (2)
35internal static bool TryGetNamedColor(string name, out Color result) => Colors.TryGetValue(name, out result); 37internal static bool IsKnownNamedColor(string name) => Colors.TryGetValue(name, out _);
System\Drawing\ColorConverter.cs (1)
20var set = new HashSet<Color>(ColorTable.Colors.Values);