我想为文件的匹配文本着色。 首先,我将文件文本加载到 FileItem.Content 中,然后使用正则表达式获取匹配项,然后将 Content 放入RichTextBox中并使用匹配项设置插入符号对文本进行定位和着色。 以及填充richtextbox的代码
RtbCodes.Document.Blocks.Clear();
RtbCodes.Document.Blocks.Add(new Paragraph(new Run(item.Content)));
foreach (Match m in item.Matches)
{
TextPointer start1 = RtbCodes.Document.ContentStart.GetPositionAtOffset(m.Index, LogicalDirection.Forward);
TextPointer end = RtbCodes.Document.ContentStart.GetPositionAtOffset(m.Index + m.Length, LogicalDirection.Backward);
if (start1 != null && end != null)
{
RtbCodes.Selection.Select(start1, end);
RtbCodes.Selection.ApplyPropertyValue(Run.BackgroundProperty, "red");
}
}
我的问题是,插入符号选择根本不正确。看下面的图片。 我的正则表达式为 [\ $#] {[。a-zA-Z \ d] +} ,因此它将得到#{blacklist.model1} ,但是不。
那么,richtextbox怎么了?
答案 0 :(得分:1)
您要在文档的开头加上不可见的“ ElementStart”符号,这就是选择偏移量不正确的原因。
要获得正确的位置,您可以从Run
元素的开头算起。
var newRun = new Run(item.Content);
RtbCodes.Document.Blocks.Add(new Paragraph(newRun));
TextPointer start1 = newRun.ContentStart.GetPositionAtOffset(m.Index, LogicalDirection.Forward);
TextPointer end = newRun.ContentStart.GetPositionAtOffset(m.Index + m.Length, LogicalDirection.Backward);