CTreeCtrl::SetTextColor
此成员函数实现Win32消息 TVM_SETTEXTCOLOR的行为,如 Windows SDK所述。
COLORREF SetTextColor(
COLORREF clr
);
参数
- clr
包含新文本颜色的 COLORREF 值。如果此参数是-1,则控件将恢复为使用系统颜色的文本颜色。
返回值
表示以前的文本颜色 COLORREF 值。如果此值为-1,则控件使用文本颜色使用系统颜色。
示例
// change text color to white and background to dark blue
m_TreeCtrl.SetTextColor(RGB(255, 255, 255));
ASSERT(m_TreeCtrl.GetTextColor() == RGB(255, 255, 255));
m_TreeCtrl.SetBkColor(RGB(0, 0, 128));
ASSERT(m_TreeCtrl.GetBkColor() == RGB(0, 0, 128));
// force repaint immediately
m_TreeCtrl.Invalidate();
要求
Header: afxcmn.h