Question

I currently have NM_CUSTOMDRAW message calling a function to color the rows of a listctrl in report mode. I can detect when a row is selected and color it myself, but this method doesn't get called for the cell that is selected, so I can't color that cell. So my question is 1) is there a way to have windows call my custom draw method for every cell whether it is selected or not? 2) If not what is the easiest way to make a selection span entire row. Thanks, CP

Was it helpful?

Solution

I found the answer, and microsoft made it easier than I guess it used to be.

m_ListCtrl.SetExtendedStyle(LVS_EX_FULLROWSELECT);

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top