0

这是一个 WinForm VB.NET 应用程序。请看下图:

在此处输入图像描述

如何在 Visual Studio 设计器的属性部分的多行文本框中添加换行符?

我尝试使用abc & Environment.NewLine & def,但这不起作用。

更新:

如何在 VS 2008、VS 2005 和 VS 2003 中做到这一点?

4

3 回答 3

6

在 Text 属性的右侧应该有一个下拉框(至少 Visual Studio 2010 是这样),如果单击它,您应该能够插入多行文本。

或者手动编辑 .Designer 文件。

设计器生成的代码如下所示

Me.textBox1.Text = "AAA" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "BBB" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "CCC"
于 2012-06-14T11:34:47.277 回答
3

在此处输入图像描述

正如@SchlaWiener 所描述的那样

于 2012-06-14T11:43:43.780 回答
0

Just use \r\n in the properties box or Environment.NewLine in the code

于 2014-10-17T13:09:24.570 回答