C# 中的 TextBox 中換行
Muhammad Maisam Abbas
2021年4月29日
本教程將討論在 C# 中向文字框中新增新行的方法。
C# 中帶有 TextBox.Multiline
屬性的 TextBox 新行
TextBox.Multiline
屬性在其中儲存一個布林值。TextBox.Multiline
屬性的值確定控制元件是否為多行文字框。該屬性的值只能是 true
或 false
。true
值表示此特定的文字框可以包含多行。false
值表示此特定的文字框不能包含多行。下面的程式碼示例向我們展示瞭如何使用 C# 中的 TextBox.Multiline
屬性向文字框新增新行。
private void button1_Click(object sender, EventArgs e)
{
string longtext = "This is some text and it is very very long for just one line";
textBox1.Text = longtext;
textBox1.AppendText(Environment.NewLine);
textBox1.Multiline = true;
}
輸出:
在上面的程式碼中,我們使用 textBox1.Text = longtext
在 textBox1
中插入了一個很長的字串,然後使用 textBox1.AppendText(Environment.NewLine)
在 textBox1
中新增了新行。此後,通過將 textBox1.Multiline
屬性的值設定為 true
,我們指定 textBox1
是多行文字框。
Author: Muhammad Maisam Abbas
Maisam is a highly skilled and motivated Data Scientist. He has over 4 years of experience with Python programming language. He loves solving complex problems and sharing his results on the internet.
LinkedIn