怎样改变树控件上显示的文本(字符串)的颜色?(见内)解决方法

怎样改变树控件上显示的文本(字符串)的颜色?(见内)
在一个树结构界面上显示 "hello   world! ",但是文本颜色是黑色的,我想显示红色的,该怎么办?   谢谢

HTREEITEM   hRoot;
hRoot   =   GetLastItem( "hello   world! ");

------解决方案--------------------
TVM_SETTEXTCOLOR
------解决方案--------------------
void CTest22Dlg::OnButton2()
{
HTREEITEM hItem = m_treeCtrl.InsertItem( "root ");
m_treeCtrl.SetTextColor(RGB(255,0,0));
}
------解决方案--------------------
自绘