Listview's subitem icon

Not natively. You will need to look into OwnerDrawing the ListView
if you want this kind of behaviour, which is not an easy task. You will
need to look into overriding the ListView's WndProc() procedure to
subclass it, set the LVS_OWNERDRAWFIXED style to it, and then proceed
with capturing the standard WM_DRAWITEM window message and
drawing it yourself.

If you have absolutely no idea what I'm talking about, I suggest you
don't worry about it for now, as you will only get more confused. :)
 
Back
Top