Change the Treeview color based on the conditions

Source: Internet
Author: User

In Delphi, The Treeview tree control is used to change its color. The customdrawitem method is used:

 

Code

Procedure Tform1.tv1customdrawitem (Sender: tcustomtreeview;
Node: ttreenode; State: tcustomdrawstate; VaR Defaultdraw: Boolean );
Begin
If Odd (node. absoluteindex) Then
Begin
Sender. Canvas. Brush. color: = Clgreen; // Change Background Color
Sender. Canvas. Font. color: = Clwhite; // Change font color
End
Else
Sender. Canvas. Font. color: = Clred;
End ;

When the content conditions change, use node to judge:

Code

Procedure Tform1.tv1customdrawitem (Sender: tcustomtreeview;
Node: ttreenode; State: tcustomdrawstate; VaR Defaultdraw: Boolean );
Begin
If Length (node. Text) < 5   Then
Tv1.canvas. Brush. color: = Clred
Else
Tv1.canvas. Brush. color: = Clwhite;
End ;

 

 

 

 

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.