ConsoleColor 枚举

定义

指定定义控制台前景色和背景色的常数。

C#
public enum ConsoleColor
C#
[System.Serializable]
public enum ConsoleColor
继承
ConsoleColor
属性

字段

Black 0

黑色。

Blue 9

蓝色。

Cyan 11

青色(蓝绿色)。

DarkBlue 1

藏蓝色。

DarkCyan 3

深紫色(深蓝绿色)。

DarkGray 8

深灰色。

DarkGreen 2

深绿色。

DarkMagenta 5

深紫红色。

DarkRed 4

深红色。

DarkYellow 6

深黄色(赭色)。

Gray 7

灰色。

Green 10

绿色。

Magenta 13

紫红色。

Red 12

红色。

White 15

白色。

Yellow 14

黄色。

示例

以下示例将枚举的值 ConsoleColor 保存到数组,并将当前值 BackgroundColorForegroundColor 属性存储到变量。 然后,它将前景颜色更改为枚举中的每个 ConsoleColor 颜色,但与当前背景匹配的颜色除外,它将背景色更改为枚举中的每个 ConsoleColor 颜色,但与当前前景匹配的颜色除外。 (如果前景颜色与背景色相同,则文本不可见。) Finally,它将调用 ResetColor 该方法来还原原始控制台颜色。

C#
using System;

class Example
{
   public static void Main()
   {
      // Get an array with the values of ConsoleColor enumeration members.
      ConsoleColor[] colors = (ConsoleColor[]) ConsoleColor.GetValues(typeof(ConsoleColor));
      // Save the current background and foreground colors.
      ConsoleColor currentBackground = Console.BackgroundColor;
      ConsoleColor currentForeground = Console.ForegroundColor;

      // Display all foreground colors except the one that matches the background.
      Console.WriteLine("All the foreground colors except {0}, the background color:",
                        currentBackground);
      foreach (var color in colors) {
         if (color == currentBackground) continue;

         Console.ForegroundColor = color;
         Console.WriteLine("   The foreground color is {0}.", color);
      }
      Console.WriteLine();
      // Restore the foreground color.
      Console.ForegroundColor = currentForeground;

      // Display each background color except the one that matches the current foreground color.
      Console.WriteLine("All the background colors except {0}, the foreground color:",
                        currentForeground);
      foreach (var color in colors) {
         if (color == currentForeground) continue;

         Console.BackgroundColor = color;
         Console.WriteLine("   The background color is {0}.", color);
      }

      // Restore the original console colors.
      Console.ResetColor();
      Console.WriteLine("\nOriginal colors restored...");
   }
}
//The example displays output like the following:
//    All the foreground colors except DarkCyan, the background color:
//       The foreground color is Black.
//       The foreground color is DarkBlue.
//       The foreground color is DarkGreen.
//       The foreground color is DarkRed.
//       The foreground color is DarkMagenta.
//       The foreground color is DarkYellow.
//       The foreground color is Gray.
//       The foreground color is DarkGray.
//       The foreground color is Blue.
//       The foreground color is Green.
//       The foreground color is Cyan.
//       The foreground color is Red.
//       The foreground color is Magenta.
//       The foreground color is Yellow.
//       The foreground color is White.
//
//    All the background colors except White, the foreground color:
//       The background color is Black.
//       The background color is DarkBlue.
//       The background color is DarkGreen.
//       The background color is DarkCyan.
//       The background color is DarkRed.
//       The background color is DarkMagenta.
//       The background color is DarkYellow.
//       The background color is Gray.
//       The background color is DarkGray.
//       The background color is Blue.
//       The background color is Green.
//       The background color is Cyan.
//       The background color is Red.
//       The background color is Magenta.
//       The background color is Yellow.
//
//    Original colors restored...

适用于

产品 版本
.NET Core 1.0, Core 1.1, Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
.NET Standard 1.3, 1.4, 1.6, 2.0, 2.1

另请参阅