.net JList similar control

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
 
C

cwineman

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?
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top