如何更改控制台中的前景和背景文字颜色?
我正在编写一个控制台C#程序。 我想在控制台中更改文本的前景和背景颜色。
Console.BackgroundColor//t set the background color for the text.
Console.ForegroundColor//to set the foreground color for the text.
Console.ResetColor();//set back the foreground color and background color to the default.
你只需要设置
Console.BackgroundColor = ConsoleColor.Blue;
Console.ForegroundColor = ConsoleColor.Red;
请阅读http://www.dotnetperls.com/console-color
Console.ForegroundColor = ConsoleColor.Green;
Console.BackgroundColor = Console.Color.White;
链接地址: http://www.djcxy.com/p/87421.html
上一篇: How to change foreground and background text color in console?