如何从后台线程访问WPF控件

时间:2016-02-25 14:08:01

标签: c# .net wpf multithreading

我有一个RichTextBox,我正在尝试查找并突出显示与用户提供的查询匹配的所有单词。我可以使用的代码,但是对于相当大的文档,它会挂起UI,因为一切都在UI线程上完成。

List<TextRange> getAllMatchingRanges(String query)
    {
        TextRange searchRange = new TextRange(ricthBox.Document.ContentStart, ricthBox.Document.ContentEnd);
        int offset = 0, startIndex = 0;
        List<TextRange> final = new List<TextRange>();
        TextRange result = null;

        while (startIndex <= searchRange.Text.LastIndexOf(query))
        {
            offset = searchRange.Text.IndexOf(query, startIndex);

            if (offset < 0)
                break;
            }

            for (TextPointer start = searchRange.Start.GetPositionAtOffset(offset); start != searchRange.End; start = start.GetPositionAtOffset(1))
            {
                if (start.GetPositionAtOffset(query.Length) == null)
                    break;
                result = new TextRange(start, start.GetPositionAtOffset(query.Length));
                if (result.Text == query)
                {
                    break;
                }
            }
            if (result == null)
            {
                break;
            }
            final.Add(result);

            startIndex = offset + query.Length;
        }

        return final;

    }

这将返回一个文本范围列表,然后我可以突出显示,但是我无法在后台线程上执行它,因为它会抛出异常,因为我试图在没有创建它的线程上访问richTextbox的文档

1 个答案:

答案 0 :(得分:6)

一个选项是Dispatcher's background priority。让突出显示在后台发生,而不会阻止UI线程。

Application.Current.Dispatcher.BeginInvoke(
  DispatcherPriority.Background,
  new Action(() => {// Do your highlighting}));