0

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

ekad
  • 14,436
  • 26
  • 44
  • 46
Velcro
  • 546
  • 1
  • 8
  • 27

1 Answers1

1

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.

Grammarian
  • 6,774
  • 1
  • 18
  • 32