这是一个 WinForm VB.NET 应用程序。请看下图:
如何在 Visual Studio 设计器的属性部分的多行文本框中添加换行符?
我尝试使用abc & Environment.NewLine & def
,但这不起作用。
这是一个 WinForm VB.NET 应用程序。请看下图:
如何在 Visual Studio 设计器的属性部分的多行文本框中添加换行符?
我尝试使用abc & Environment.NewLine & def
,但这不起作用。
在 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"
正如@SchlaWiener 所描述的那样
Just use \r\n in the properties box or Environment.NewLine in the code