怎么设置listctrl某行某列的颜色

2024-11-21 23:21:52
推荐回答(1个)
回答1:

下面这段代码是我写的一个例子,也是从CListCtrl从继承来的
bool CBaseTabCtrl::InitList()
{
//初始化列表框页
CRect rect_nlist;
this->GetClientRect(&rect_nlist);
rect_nlist.top+=100;
// m_list=new CListCtrl;
m_list->Create(WS_CHILD|LVS_REPORT|WS_BORDER|LVS_SINGLESEL,rect_nlist,this,ID_TABLIST);
this->m_list->ModifyStyle(LVS_EDITLABELS, 0L); //禁止标题编辑
m_list->ModifyStyle(0L, LVS_REPORT); //设为Report类型
m_list->ModifyStyle(0L, LVS_SHOWSELALWAYS); //始终高亮度被选中的表项
m_list->ModifyStyle(0L, LVS_NOSORTHEADER);
m_list->SetBkColor(RGB(0,200,200));//设置背景色
//m_list->SetTextBkColor(RGB(0,200,200));//设置文字颜色
m_list->ModifyStyle(LVS_OWNERDRAWFIXED ,0L);
m_list->SetExtendedStyle( LVS_EX_FULLROWSELECT | //允许整行选中
LVS_EX_HEADERDRAGDROP | //允许整列拖动
LVS_EX_GRIDLINES | //画出网格线
LVS_EX_FLATSB //扁平风格的滚动条
);
}