Is it possible to use groups in a ListView which is in VirtualMode?

Thanks

link|improve this question

46% accept rate
feedback

1 Answer

A standard .NET ListView cannot.

The underlying Windows control has an undocumented interface which allows ListViews to show groups in virtual mode (on Vista and later)

ObjectListView -- an open source wrapper around a .NET ListView -- does the hard work of using that undocumented interface so its virtual lists can show groups. See here for a description.

link|improve this answer
Looks great! Thanks! – Velcro Mar 24 '11 at 20:34
feedback

Your Answer

 
or
required, but never shown

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