Create a console like information display in a windows form

Den*_*len 2 c# visual-studio-2012

Hy,

在我的c#应用程序中,我想制作一个盒子,我可以逐行放置文本,以显示有关应用程序当前正在执行的操作的信息.我试图在互联网上查看,因为这是与用户交互的一种非常常见的方式,并且我确信有很多样本.问题是,我不知道我应该怎么称呼这种文本框.

我希望你们明白我在寻找什么!

编辑1

我想要一个像这个安装程序中的那个盒子.

图片http://i1-win.softpedia-static.com/screenshots/Microsoft-Windows-Installer_1.png

Apo*_*ARE 7

您可以使用多行文本框,然后将其设置为只读且不可编辑.你只需追加该行并添加回车符(\ r \n)

      TextBox1.text += "More text" + " \r\n";
Run Code Online (Sandbox Code Playgroud)