Highlight Search Results in RadTreeView
Environment
Product Version | Product | Author |
---|---|---|
2020.1.113 | RadTreeView for WinForms | Todor Vyagov |
Description
This tutorial demonstrates how to highlight search results in RadTreeView.
Solution
The desired text highlight effect can be achieved by setting the TextParams highlightRanges and highlightColor properties just before the paint cycle of TreeNodeContentElement.
First, we need to create a custom TreeNodeElement by subscribing to the CreateNodeElement event of RadTreeView.
The custom TreeNodeElement has three main highlight related properties: HighlightText, HighlightTextColor, HighlightCompareOptions. It has also a custom TreeNodeContentElement (this is the element that holds the text).
To modify the TextParams of TreeNodeContentElement we need to override the CreateTextParams method and there we can add our hightlightRanges and set the highlightColor. The GetSearchHighlightRanges method is responsible for creating the highlightRanges and considers the HightlightText and HighlightCompareOptions.
Last, but not least we need to update the HighlightText when the text of a text box is changed and force the RadTreeView to repaint.
A full code snippet is illustrated below: