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.
我如何在 C# 中读取 Windows 8 WinRT TextBox 行的内容?我没有找到解决这个问题的方法?它不像在.Net中那样工作
var lines = textboxName.Text.Split(Environment.NewLine.ToCharArray(), StringSplitOptions.RemoveEmptyEntries);
会给你一个文本框中的行,根据框的内容显式拆分。(删除空条目说明实际上Environment.NewLine是两个字符长。)
Environment.NewLine
如果您想在多行文本框中(即发生换行的位置)中由 UI 拆分字符串,则必须更详细地测量字符串等,但我不推荐它,除非您绝对必须拥有UI 列出的字符串