TextBox文本框中如何换行

首先设置可多行

this.TextBox1.Multiline=true; 

换行

this.TextBox1.Text="加入此换行符即可换行" + "\r\n";

你可能感兴趣的:(C#)