我正在开发应用程序,根据正则表达式模式突出显示RichTextBox中的文本。 除了性能之外,它工作正常,即使对于小文本(大约500个字符),它也会挂起一段时间,这对用户来说是可见的。
我是否在使用FlowDocument做错了什么?有人能指出我的性能问题来源吗?
public class RichTextBoxManager
{
private readonly FlowDocument inputDocument;
private TextPointer currentPosition;
public RichTextBoxManager(FlowDocument inputDocument)
{
if (inputDocument == null)
{
throw new ArgumentNullException("inputDocument");
}
this.inputDocument = inputDocument;
this.currentPosition = inputDocument.ContentStart;
}
public TextPointer CurrentPosition
{
get { return currentPosition; }
set
{
if (value == null)
{
throw new ArgumentNullException("value");
}
if (value.CompareTo(inputDocument.ContentStart) < 0 ||
value.CompareTo(inputDocument.ContentEnd) > 0)
{
throw new ArgumentOutOfRangeException("value");
}
currentPosition = value;
}
}
public TextRange Highlight(string regex)
{
TextRange allDoc = new TextRange(inputDocument.ContentStart, inputDocument.ContentEnd);
allDoc.ClearAllProperties();
currentPosition = inputDocument.ContentStart;
TextRange textRange = GetTextRangeFromPosition(ref currentPosition, regex);
return textRange;
}
public TextRange GetTextRangeFromPosition(ref TextPointer position,
string regex)
{
TextRange textRange = null;
while (position != null)
{
if (position.CompareTo(inputDocument.ContentEnd) == 0)
{
break;
}
if (position.GetPointerContext(LogicalDirection.Forward) == TextPointerContext.Text)
{
String textRun = position.GetTextInRun(LogicalDirection.Forward);
var match = Regex.Match(textRun, regex);
if (match.Success)
{
position = position.GetPositionAtOffset(match.Index);
TextPointer nextPointer = position.GetPositionAtOffset(regex.Length);
textRange = new TextRange(position, nextPointer);
textRange.ApplyPropertyValue(TextElement.BackgroundProperty, Brushes.Yellow);
position = nextPointer;
}
else
{
position = position.GetPositionAtOffset(textRun.Length);
}
}
else
{
position = position.GetNextContextPosition(LogicalDirection.Forward);
}
}
return textRange;
}
}
要调用它,我首先在Initialize方法
中创建一个实例frm = new RichTextBoxManager(richTextBox1.Document);
和textbox的textchange事件(我把regex放在哪里)我调用Highlight方法
frm.Highlight(textBox1.Text);
答案 0 :(得分:0)
这是一种不同的方法,但我将它用于具有200,000个字符的文件的子秒响应。
由于我从文本开始,这可能不适合您。
我为单词位置索引文本文件,用户可以搜索单词。我突出他们搜索的单词。
但是我遍历文本来创建FlowDoc并在构建FlowDoc时突出显示。此FlowDoc没有格式(高亮除外)。因此,如果您需要保留格式,则无效。
所以我的猜测是TextPointer是一个很大的开销。
但是我从你的代码中学到了很多东西,因为我将尝试突出显示工作,但我根本无法使TextPointer工作。
也许看一下处理textRun中的所有匹配而不是第一次匹配并增加位置。