Reputation:
How can I create a ListBox control on my Winforms application that has images in an orderly fashion, just like it holds text?
I'd like the images to appear like this:
Maybe I don't even need to use a ListBox. Maybe there's a better control out there for this purpose? Thanks!
Upvotes: 5
Views: 2945
Reputation: 15813
Upvotes: 0
Reputation: 54764
You possibly want an owner-draw list box. There's an example on the MSDN page for the DrawItem
event.
Upvotes: 1