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