private void button1_Click(object sender, EventArgs e)
{
textBox2.Text += textBox1.Text + "\n\n";
textBox1.Text = "";
}
我試過使用\n
和\br
但我無法得到它。如何在窗體窗體應用程序中打破一條線?
private void button1_Click(object sender, EventArgs e)
{
textBox2.Text += textBox1.Text + "\n\n";
textBox1.Text = "";
}
我試過使用\n
和\br
但我無法得到它。如何在窗體窗體應用程序中打破一條線?
string text2 = "line1\r\nline2";
但是最好使用Environment.NewLine。
string text = "line1" + Environment.NewLine + "line2";
使用Environment.NewLine Property
換行符的屬性值是專門針對.NET Framework的當前平臺和實施定製的常數。此屬性包含"\r\n"
for 非Unix平臺或"\n"
for Unix平臺。
@MaruthiRam如果滿足您的要求,請接受答案。 – joshua 2013-02-21 07:41:30
Enviroment.NewLine怎麼樣? – joshua 2013-02-21 06:28:16