- 利用TextBox控制項的Lines屬性
string [] strAddress = {"Mukund Pujari","Global Transformation Technologies","Pune, India"}; textBox1.MultiLine=true; textBox1.Lines=strAddress;
- 或者
textBox1.Text="Line 1\r\nLine2\r\nLine3.";
- 或者
textBox1.Text="Line1"+System.Environment.NewLine+"Line2"+System.Environment.NewLine+"Line3";
沒有留言:
張貼留言