Show subitems in C# ListView when using Tile view -


i'm using listview component display saved profiles in program, each profile has icon , title. used, listview view property set tile (also groupping applied)

how wan't add description text entries (not tooltip). can windows explorer does?

windows explorer tile view, item details

you need define column headers. documentation:

the tile view displays each item large icon on left , textual information on right. textual information consists of item label followed subitems. default, first subitem displayed, corresponds item label. display additional subitems, must add columnheader objects columns collection. each subitem in tile corresponds column header. control subitems displayed , order in displayed, must set listviewitem.listviewsubitem.name property each item , columnheader.name property each header. can add, remove, , rearrange headers in columns collection achieve desired result.


Comments