我想突出显示 AvalonEdit 中选定(突出显示)文本的所有实例。VS2010 做到了这一点,这是一个方便的功能。我知道我需要按照下面的代码实现 DocumentColorizingTransformer,但不知道如何从文档中获取选定的文本。选择信息在“CurrentContext”中不可用。
下面的代码查找“AvalonEdit”的所有实例。如何找到所选(突出显示)文本的所有实例。
public class ColorizeAvalonEdit : DocumentColorizingTransformer
{
protected override void ColorizeLine(DocumentLine line)
{
int lineStartOffset = line.Offset;
string text = CurrentContext.Document.GetText(line);
int start = 0;
int index;
while ((index = text.IndexOf("AvalonEdit", start)) >= 0) {
base.ChangeLinePart(
lineStartOffset + index, // startOffset
lineStartOffset + index + 10, // endOffset
(VisualLineElement element) => {
// This lambda gets called once for every VisualLineElement
// between the specified offsets.
Typeface tf = element.TextRunProperties.Typeface;
// Replace the typeface with a modified version of
// the same typeface
element.TextRunProperties.SetTypeface(new Typeface(
tf.FontFamily,
FontStyles.Italic,
FontWeights.Bold,
tf.Stretch
));
});
start = index + 1; // search for next occurrence
} } }