我创建了以下代码来获取字符串的第一行:
string firstline = test.Substring(0, test.IndexOf(Environment.NewLine));
这不起作用,因为 XAML 文本框使用 \r 来表示换行符,但 Environment.NewLine 是 \r\n。
WindowsPhone/XAML 中是否有为 NewLine 定义的常量字符串?
我创建了以下代码来获取字符串的第一行:
string firstline = test.Substring(0, test.IndexOf(Environment.NewLine));
这不起作用,因为 XAML 文本框使用 \r 来表示换行符,但 Environment.NewLine 是 \r\n。
WindowsPhone/XAML 中是否有为 NewLine 定义的常量字符串?
Try splitting on "\r", I found an example in the answer here.
Hope this helps!
你的代码很好。您是否将MultiLine属性设置为true?
Environment.NewLine为非 Unix 平台定义
一个包含“ \r\n ”的字符串,或者为 Unix 平台定义一个包含“\ n ”的字符串。
希望能帮助到你。