Konsol C# programı yazıyorum. Konsoldaki metnin ön planını ve arka plan rengini değiştirmek istiyorum.Konsolda ön plan ve arka plan metni rengi nasıl değiştirilir?
5
A
cevap
9
Console.BackgroundColor//t set the background color for the text.
Console.ForegroundColor//to set the foreground color for the text.
Console.ResetColor();//set back the foreground color and background color to the default.
6
Sen aşağıdaki özellikleri (MSDN belgelerine bağlantılar) kullanmak mümkün olmalıdır http://www.dotnetperls.com/console-color
2
de hepsini oku
Console.BackgroundColor = ConsoleColor.Blue;
Console.ForegroundColor = ConsoleColor.Red;
ayarlamak için yeterlidir
4
Console.ForegroundColor = ConsoleColor.Green;
Console.BackgroundColor = Console.Color.White;
Windows API'yi kullanmaya gerek yok! – king9981