vote up 0 vote down star

Is it possible to have variable size (owner draw) items in the Win32 ListView, if yes, how?

flag

72% accept rate

2 Answers

vote up 1 vote down check

Check out WM_MEASUREITEM

link|flag
ListView controls do not support WM_MEASUREITEM, though. – Remy Lebeau - TeamB Jun 17 at 1:36
Remy, the docs (see link) don't agree with you. – Serge - appTranslator Jun 17 at 20:36
vote up 2 vote down

You can probably use Listbox with LBS_OWNERDRAWVARIABLE style for supporting items with variable height. Then Listbox will send WM_MEASUREITEM for each item.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.