C# WinForm中的TextBox是允许多行显示的
如:
假使TextBox控件的name值为TextBox1TextBox1.Text = "abc";
TextBox1.Text = TextBox1.Text + "123";最后TextBox1里显示是abc123
如果我要123在第二行显示,
也就是要这样显示:
                  abc
                  123
应该怎么做?