CListCtrl 失去焦点时,怎么 让已经选择的行 显亮

CListCtrl 失去焦点时,如何 让已经选择的行 显亮?
如题。
CListCtrl 失去焦点时,如何 让已经选择的行 显亮?

------解决方案--------------------
用一个int型变量来标识当前选中的行索引,CListCtrl::SeleChange时重新给该变量赋值;
当失去焦点时,再判断这个值,来重绘该项。
------解决方案--------------------
显亮不知道, 但可以显示选中的行, 为List Control指定style:

LVS_SHOWSELALWAYS 

The selection, if any, is always shown, even if the control does not have the focus.