3

我将 RichTextBox 用于彩色文本。假设我想为文本的不同部分使用不同的颜色。到目前为止,这工作正常。

我目前遇到了 RichTextBox 的 SelectionStart 属性的问题。我已经为 RichTextBox 的 Text 属性设置了一些文本。如果文本包含\r\n\r\nSelectionStart 位置,则与指定字符串的字符位置不匹配。

小例子(WinformsApplication.Form with RichTextBox):

   public Form1()
    {
        InitializeComponent();
        String sentence1 = "This is the first sentence.";
        String sentence2 = "This is the second sentence";

        String text = sentence1 + "\r\n\r\n" + sentence2;
        int start1 = text.IndexOf(sentence1);
        int start2 = text.IndexOf(sentence2);

        this.richTextBox1.Text = text;

        String subString1 = text.Substring(start1, sentence1.Length);
        String subString2 = text.Substring(start2, sentence2.Length);

        bool match1 = (sentence1 == subString1); // true
        bool match2 = (sentence2 == subString2); // true

        this.richTextBox1.SelectionStart = start1;
        this.richTextBox1.SelectionLength = sentence1.Length;
        this.richTextBox1.SelectionColor = Color.Red;

        this.richTextBox1.SelectionStart = start2;
        this.richTextBox1.SelectionLength = sentence2.Length;
        this.richTextBox1.SelectionColor = Color.Blue;

    }

RichTextBox 如下所示:
在此处输入图像描述

如您所见,第二句的前两个字符没有着色。这是由 产生的偏移的结果\r\n\r\n

这是什么原因?我应该使用另一个控件为文本着色吗?如何以可靠的方式解决问题?我尝试用"\r\n\r\n"String.Empty 替换 ,但这会产生其他偏移问题。

相关问题
RichTextBox.Select 与 SubString 方法之间的行为不一致

4

2 回答 2

2

似乎\r\n只有在进行选择时,该序列才算一个字符。您可以在所有\r\n替换为 的字符串副本中进行测量\n

于 2013-10-10T10:37:53.220 回答
1

只是为了完整性(我现在将坚持 linepogls 的答案):
我找到了另一种获取 SelectionStart 属性索引的方法。RichTextBox 提供了一个Find方法,可用于根据指定的字符串检索索引位置。

请注意,您要突出显示的文本可能不是唯一的并且会多次出现。您可以使用重载来指定搜索的开始位置。

于 2013-10-10T10:52:20.467 回答