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.
我正在使用只读模式文本框在此应用程序中实现 Windows8 C# 应用程序。
我正在使用一些自定义转义序列识别下一行。
如何在 C# Metro 应用程序中实现自定义转义序列?
问候纳拉辛哈
我不确定这是否能回答您的问题,但以下内容将允许您在文本框中创建换行符:
myTextBox.Text += Environment.NewLine;
或者:
myTextBox.Text = "This is\nA Multi line\nText Box";