65.9K
CodeProject is changing. Read more.
Home

CTreeCtrlEx - Setting Color and Font Attribute for Individual Items in Tree Control

starIconstarIconstarIconstarIcon
emptyStarIcon
starIcon

4.68/5 (21 votes)

May 27, 2002

1 min read

viewsIcon

249095

downloadIcon

11148

Allows to display color items and change the font style

Sample Image - ColorTreeCtrl.jpg

Introduction

This is an example of how to enable colors in Tree Controls. Actually, I saw a similar article from a friend, but it was based on CTreeView, not on CTreeCtrl which I actually needed.

Features

Below are some of the many features that CTreeCtrlEx has:

  • Change the item color
  • Change the item font
  • Make the item bold
  • Get the item color
  • Get the item font
  • Get if item is bold
  • And more in future

Usage

It is so easy, you only need to include the class CTreeCtrlEx in your project, and create control member variable from that class. You can find the function name and the parameters in the source zip file. Here is some sample code from the demo app. Here, m_cTree is a member of type CTreeCtrlEx.

HTREEITEM hOrder[1024], hContent[1024];
CString sStr;

for(int i = 0; i < 255; i++) 
{
    sStr.Format("Parent%d", i);
    hOrder[i] = m_cTree.InsertItem(sStr);
    for (int j = 0; j < 5; j++) 
    {
        sStr.Format("Child%d", j);
        hContent[j] = m_cTree.InsertItem(sStr, hOrder[i]);
        m_cTree.SetItemColor(hContent[j], RGB(i, 255, 0));
    }
    m_cTree.SetItemColor(hOrder[i], RGB(255, i, 0));
}

Acknowledgements

The CTreeCtrlEx is inspired by code, ideas, and submissions from the following:

License

This article has no explicit license attached to it, but may contain usage terms in the article text or the download files themselves. If in doubt, please contact the author via the discussion board below.

A list of licenses authors might use can be found here.