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

时间:2023-02-03
本文介绍了在 C# 控制台应用程序上更改背景颜色的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

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

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

这篇关于在 C# 控制台应用程序上更改背景颜色的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

上一篇:仅系统托盘(无停靠图标)应用程序在 Mac 上使用 C#/Mono 下一篇:如何将 .PNG 图像设置为我的 WPF 表单的 TILED 背景图像?

相关文章

最新文章