CListCtrl选中行保持高亮

在CListCtrl中添加NM_CUSTOMDRAW消息的事件响应:

void CCardInfoDlg::OnNMCustomdrawListCard(NMHDR *pNMHDR, LRESULT *pResult)
{
	NMLVCUSTOMDRAW* pLVCD = reinterpret_cast<NMLVCUSTOMDRAW*>( pNMHDR );
	*pResult = CDRF_DODEFAULT;
	// First thing - check the draw stage. If it's the control's prepaint
	// stage, then tell Windows we want messages for every item.
	if ( CDDS_PREPAINT == pLVCD->nmcd.dwDrawStage )
	{
		*pResult = CDRF_NOTIFYITEMDRAW;
	}
	else if ( CDDS_ITEMPREPAINT == pLVCD->nmcd.dwDrawStage )
	{
		// This is the notification message for an item. We'll request
		// notifications before each subitem's prepaint stage.
		*pResult = CDRF_NOTIFYSUBITEMDRAW;
	}
	else if ( (CDDS_ITEMPREPAINT | CDDS_SUBITEM) == pLVCD->nmcd.dwDrawStage )
	{
		//在这里不但可以处理选中行的背景颜色,
		//也可以设置字体颜色, 
		COLORREF clrNewTextColor, clrNewBkColor;          
        int nItem = static_cast<int>(pLVCD->nmcd.dwItemSpec);
		if (m_LstCtrl.GetItemState(nItem, LVIS_SELECTED) & LVIS_SELECTED )
		{
			clrNewTextColor = RGB(255,255,255);         //Set the text to white
			clrNewBkColor = RGB(51,153,255);			//Set the background color to blue
			pLVCD->clrText = clrNewTextColor;
			pLVCD->clrTextBk = clrNewBkColor;	
		}  
		*pResult = CDRF_DODEFAULT;
	}
}


 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值