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.
我在 WP7 上遇到了 RichTextBox 的一些问题。我想获取此控件中的行数或其他任何可以为我提供有关当前屏幕上文本位置的信息的信息。谢谢。
您可以拆分字符串以创建字符串数组。例如:
string[] lines = yourRichTextBox.Text.Split(new[] {Environment.NewLine}, StringSplitOptions.RemoveEmptyEntries); // lines.Count will give you total number of lines
我添加了 StringSplitOptions 枚举参数以忽略通常以数组结尾的空值。如果您需要获得真实的行数,您可能希望避免这种情况。