突出显示文本框中的特殊单词

发布于 2024-12-04 04:29:31 字数 298 浏览 1 评论 0原文

如何突出显示文本中出现的所有单词列表。 例如,我确实有一个字符串列表(“if”、“else”、“then”、“while”、“true”)。 我确实需要在文本框中找到它们并突出显示它们(前景色+背景色)。

其外观示例: 在此处输入图像描述 在此处输入图像描述

当前的方法是覆盖 TextBox 并在 OnTextChange 事件中执行“某些操作”。

How do I highlight all occurrences of a list of words in a text.
For example, i do have a list of strings ("if", "else", "then", "while", "true").
I do need to find them in a TextBox and highlight them (foreground + background color).

Examples as how it should look:
enter image description here
enter image description here

The current approach is to override TextBox and do "something" in the OnTextChange event.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

念﹏祤嫣 2024-12-11 04:29:31

我实际上正在使用一些使用 RichTextBox 的方法,但我的步骤很慢。
意识到我如何标记事物仍然存在一些错误。例如,一切都得到
在要标记的第一个字符之后标记。所以它看起来就像这样:
在此处输入图像描述

pos is the position of the character i want to mark (+1 for just one character), in OnTextChange
MarkForeground(pos + 2, pos + 2 + 1, Colors.Green); // +2 for some awkward wpf bug probably ;)

private void MarkForeground(int start, int end, Color col)
    {
        TextPointer startPointer = this.Document.ContentStart.GetPositionAtOffset(start);
        TextPointer endPointer = this.Document.ContentStart.GetPositionAtOffset(end);

        if (startPointer != null && endPointer != null)
        {

            TextRange range = new TextRange(startPointer, endPointer);


            range.ApplyPropertyValue(TextElement.ForegroundProperty, new SolidColorBrush(col));

        }
    }

I'm actually using some approaches using the RichTextBox but im making steps slowly.
Realized how i mark things there are still some bugs. For instance, everything gets
marked after the first character to mark. So it looks just like that:
enter image description here

pos is the position of the character i want to mark (+1 for just one character), in OnTextChange
MarkForeground(pos + 2, pos + 2 + 1, Colors.Green); // +2 for some awkward wpf bug probably ;)

private void MarkForeground(int start, int end, Color col)
    {
        TextPointer startPointer = this.Document.ContentStart.GetPositionAtOffset(start);
        TextPointer endPointer = this.Document.ContentStart.GetPositionAtOffset(end);

        if (startPointer != null && endPointer != null)
        {

            TextRange range = new TextRange(startPointer, endPointer);


            range.ApplyPropertyValue(TextElement.ForegroundProperty, new SolidColorBrush(col));

        }
    }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文