2

我创建了以下代码来获取字符串的第一行:

string firstline = test.Substring(0, test.IndexOf(Environment.NewLine));

这不起作用,因为 XAML 文本框使用 \r 来表示换行符,但 Environment.NewLine 是 \r\n。

WindowsPhone/XAML 中是否有为 NewLine 定义的常量字符串?

4

2 回答 2

2

Try splitting on "\r", I found an example in the answer here.

Hope this helps!

于 2013-02-21T16:58:57.450 回答
1

你的代码很好。您是否将MultiLine属性设置为true

Environment.NewLine为非 Unix 平台定义
一个包含“ \r\n ”的字符串,或者为 Unix 平台定义一个包含“\ n ”的字符串。

希望能帮助到你。

于 2013-02-21T18:46:19.990 回答