I want to change the color of text in a specific row of a virtual string tree. is it possible?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
Use the OnBeforeCellPaint event:
This will change the background on every other row (if the rows are on the same level). |
||||
|
|
|
To control the color of the text in a specific row, use the OnPaintText event and set TargetCanvas.Font.Color.
Note that this method is called for every cell in the TreeView. The Node pointer is the same in each cell of a row. So if you have multiple columns and want to set the color for a whole row accoring to the content of a specific column, you can use the given Node like in the example code. |
||||
|
|
