是否可以在控制台中更改整个背景颜色?

时间:2014-01-19 14:13:14

标签: vb.net

我可以使用

更改文本的背景
Console.BackgroundColor = ConsoleColor.Blue
Console.WriteLine("This is blue")

但是我想知道是否可以更改整个控制台窗口的背景。

1 个答案:

答案 0 :(得分:2)

使用Console.Clear,如下所示:

   Sub Main()

        Console.BackgroundColor = ConsoleColor.DarkBlue
        Console.ForegroundColor = ConsoleColor.White

        '' the entire console will now be white on dark blue
        Console.Clear()

        Console.WriteLine("Test")

        Console.Read()

    End Sub