【C#】【Windows 窗体应用】TextBox 的多行实现换行

1. 设置TextBox空间允许多行: this.textBox1.Multiline = true; 

 2.换行字符是使用"\r\n"。

1 textBox1.Text += "第0行\r\n";
2 textBox1.Text += "第1行\r\n";
3 textBox1.Text += "第2行\r\n";
4 textBox1.Text += "第3行\r\n";
5 textBox1.Text += "第4行\r\n";
6 textBox1.Text += "第5行\r\n";

 

 

posted @ 2023-08-25 18:42  陆陆无为而治者  阅读(1998)  评论(0编辑  收藏  举报