C# In a nut shell can I display images in a list box? I have a list of users and I want to display a green tick next to some of the names, is this possible?
Thanks
feedback
|
|
The following code displays how to do custom drawing in a listbox.
| |||
|
feedback
|
|
Steve, this article might point you in the right direction: | |||
feedback
|
|
In WPF it's quite simple, but if you're using winforms, you can't do it with the System.Windows.Forms.ListBox control. You can do it with the ListView control, or third party controls. | |||
|
feedback
|
|
System.Windows.Forms.ListView will do the trick very easily. You might have to work a little harder than a ListBox if you want the list in 'details' view though. | |||
|
feedback
|