如何分隔文本框中的段落?
如果我有一个文本框,并且我想在其中生成一些段落,那么我想使用换行符是有意义的。有什么想法吗?
If I have a textbox, and I want to generate some paragraph into it, it makes sense I will want to use linebreaks. Any idea?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
对于换行符,请指定
Environment.NewLine
,如使用两个 NewLine 进行段落分隔
将文本放入 TextBox 中
For your line break specify
Environment.NewLine
as inUse two NewLine for a paragraph separation
Put the text in your TextBox
VB.NET 中的换行可以使用
vbcrlf
用最少的代码实现:vbcrlf
本质上与Environment.NewLine
相同,但特定于网络Line breaks in VB.NET can be achieved with minimal code by using
vbcrlf
:vbcrlf
is essentially the same asEnvironment.NewLine
but is specific to VB.NET