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.
我到处找,希望你能给我最终的结果....我做了一个VBNet 2008 移动应用程序,我放置了一个大按钮,它应该包含一个换行的文本。我尝试了所有方法,包括带有“附加”的 StringBuilder 对象,或特殊字符,如 chr(10) & chr(13)、vbCrLf、Constants.vbCrLf、\n、vbNewLine 等,结果在应用程序时没有空格或正方形跑步!
有什么解决办法吗?
标准按钮会自动换行 - 您无需对其执行任何操作。
我不知道这对移动应用程序是否有帮助,但我刚刚将它用于 vb.net 网站
导入 System.Text.RegularExpressions
..并在页面加载
Button1.Text = Regex.Unescape("这是一个大按钮,有很多 \n 文本,用于查看文本 \n 是否换行")