问题描述
我在网上搜索过,但我似乎找不到解决方案.我希望我的整个控制台应用程序窗口是一种特定的颜色,例如蓝色.我该怎么做?
Ive searched the Web, but i cant seem to find the solution. I want my whole console application window to be a specific color, for example blue. How do I do that?
推荐答案
只需设置背景颜色并调用Console.Clear():
Simply set the background color and call Console.Clear():
class Program {
static void Main(string[] args) {
Console.BackgroundColor = ConsoleColor.Blue;
Console.Clear();
Console.ForegroundColor = ConsoleColor.White;
Console.Write("Press any key to continue");
Console.ReadKey();
}
}
寡妇村村长_