Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我基本上希望不同的标签出现在不同的行上。
protected void Button2_Click(object sender, EventArgs e) { Label2.Text = Label3.Text + Label1.Text; }
我希望在Label1.Text下面一行显示Label3.Text。我不想调整宽度和高度,因为标签中的文本在每个标签中的宽度都不相同。
Label1.Text
Label3.Text
尝试<br/>在两者之间使用它应该可以
<br/>
Label2.Text = Label3.Text +"<br/>"+ Label1.Text;
更优雅的方法:
Label2.Text = Label3.Text + Environment.NewLine() + Label1.Text;