3
Console.BackgroundColor = ConsoleColor.Blue
Console.WriteLine("This is blue")
改變文本的背景但是我想知道是否有可能改變整個控制檯窗口的背景。
Console.BackgroundColor = ConsoleColor.Blue
Console.WriteLine("This is blue")
改變文本的背景但是我想知道是否有可能改變整個控制檯窗口的背景。
使用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
如果這個回答你的問題,可以請你把它標記爲正確的答案?謝謝! –