用户登录
用户注册

分享至

在 C# 控制台应用程序上更改背景颜色

  • 作者: 寡妇村村长_
  • 来源: 51数据库
  • 2023-02-08

问题描述

我在网上搜索过,但我似乎找不到解决方案.我希望我的整个控制台应用程序窗口是一种特定的颜色,例如蓝色.我该怎么做?

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();
    }
}

软件
前端设计
程序设计
Java相关