3

我在我的 WPF Richtextbox 中突出显示所有出现的不间断空间。一旦我找到所需的文本范围,我就会调用:

textrange.ApplyPropertyValue(TextElement.BackgroundProperty, Brushes.DarkRed);

它工作正常。但是,如果突出显示出现在文档的末尾,所有新键入的文本也会被突出显示,这很糟糕。有谁知道如何解决这个问题?

完整代码:

private void HighLightNonbreakSpace()
    {
        var start = this.Document.ContentStart;
        char nonBreakSpace = System.Convert.ToChar(160);
        while (start != null && start.CompareTo(this.Document.ContentEnd) < 0)
        {
            if (start.GetPointerContext(LogicalDirection.Forward) == TextPointerContext.Text)
            {
                var match = start.GetTextInRun(LogicalDirection.Forward).IndexOf(nonBreakSpace);
                if (match >=0)
                {
                    var matchPos = start.GetPositionAtOffset(match, LogicalDirection.Forward);
                    var textrange = new TextRange(matchPos, matchPos.GetPositionAtOffset(1,LogicalDirection.Forward));
                    textrange.ApplyPropertyValue(TextElement.BackgroundProperty, Brushes.DarkRed);
                    start = textrange.End;
                }
            }
            start = start.GetNextContextPosition(LogicalDirection.Forward);
        }
    }
4

1 回答 1

3

您可能不仅需要突出显示 nbsps,还必须取消突出显示其他所有内容,即在您的例程中添加一个 else 分支。默认情况下,新输入的文本将从它之前的任何内容中获取其属性,因此您必须确定最后输入的字符是否为 nbsp 并相应地设置其属性。

于 2012-05-14T19:05:45.257 回答