.net JList similar control

  • Thread starter Thread starter cwineman
  • Start date Start date
C

cwineman

Is there a list control in .NET that is like a java JList, in that it allows
you to render a cell how you want to?

ListBox lists text strings. ImageList is just for images. What if I want a
scrollable list of objects, but I want to decide how they look in the list?
What .NET control should I use? ListView lets you switch between a canned
set of views and you have control over what text/images go in different
slots, but no real control over how things look.

-Corey
 
Instead of messing with graphics, brushes, and rectangles is it possible
just to put a usercontrol into the listbox. So instead of manually having to
draw the cell, can I just call the Draw() or Paint() of a control that knows
how to draw itself?
 
Back
Top