Home > Software engineering >  CtrlList controls how the selected row when click other controls remain highlighted?
CtrlList controls how the selected row when click other controls remain highlighted?

Time:09-19

How to keep CtrlList controls highlighted state, when I click on the program interface on other controls or any other place, still can maintain the highlighted selection state, please master, had better have the source code, thank you very much,

CodePudding user response:

CListCtrl loses focus, still select highlight

CodePudding user response:

SetItemState (I, LVIS_DROPHILITED LVIS_DROPHILITED);

CodePudding user response:

SetItemState (nIdx LVIS_SELECTED, LVIS_SELECTED);//highlight
  • Related