TreeView_SetTextColor 函数是用于设置树形视图控件中项的文本颜色的 Win32 API 函数。

以下是 TreeView_SetTextColor 函数的一般形式:
COLORREF TreeView_SetTextColor(
  HWND      hwnd,
  COLORREF  clrText
);

参数说明:
  •  hwnd: 树形视图控件的句柄。

  •  clrText: 项文本的颜色,使用 RGB 宏指定。


函数返回值是先前与树形视图关联的文本颜色。

示例代码:
#include <Commctrl.h>

// 在使用此函数之前,请确保你的程序链接了 Comctl32.lib 库

// 设置树形视图项的文本颜色
COLORREF SetTreeViewTextColor(HWND hTreeView, COLORREF newColor) {
    return TreeView_SetTextColor(hTreeView, newColor);
}

在使用这个函数之前,请确保你的程序链接了 Comctl32.lib 库。此外,你需要在代码中包含 Commctrl.h 头文件。


转载请注明出处:http://www.zyzy.cn/article/detail/24866/Win32 API/Commctrl.h/TreeView_SetTextColor