什么是传统System.Console的最佳替代品?
答案 0 :(得分:0)
这是一个很酷的例子:
Using System; // <-- You need this for Console
class Program
{
static void Main()
{
//
// 1. Type "Console" and press "."
// 2. Select "BackgroundColor".
// 3. Press space and "=", then press tab.
//
Console.BackgroundColor = ConsoleColor.Blue;
Console.ForegroundColor = ConsoleColor.White;
Console.WriteLine("White on blue.");
Console.WriteLine("Another line."); // <-- This line is still white on blue.
Console.ResetColor();
}
}
答案 1 :(得分:0)
多线RichTextBox是您想要使用的。 将RichTextBox从工具箱拖到窗体上。在属性窗口中,将Multiline属性更改为True,并根据需要调整文本框的大小。
希望有所帮助。