CDBurnerXP Style List

S.Murphy

New member
Joined
Feb 22, 2009
Messages
1
Location
Scotland
Programming Experience
5-10
Is there a list or a way to get one of the lists in VB.Net to work like the ones in CDBurnerXP?

I shows a small icon at the side, then has a title and a little description under that.

Have designed a program around this style of list but now when i have came to .net to write it... there is no list like it :S.

Any help with a way to get a list like it would be great.

Edit:
Here is a screen shot of the list...
 
Last edited:
Four options you can start with:
  • create a UserControl as item template, add instances to a FlowLayoutPanel
  • user draw Listbox control (DrawMode)
  • user draw ListView control (OwnerDraw)
  • the PowerPacks 3.0 DataRepeater control
 
Back
Top