Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I include icons in my ListBox?

I know that similar questions have already been asked here before, but they all lead to the same codeproject article that doesn't work. Does anybody know of a working ListBox with icons?

like image 661
user629926 Avatar asked Sep 18 '25 15:09

user629926


1 Answers

Will a ListView work for you? That is what I use. Much easier and you can make it look just like a ListBox. Also, plenty of documentation on MSDN to get started with.

How to: Display Icons for the Windows Forms ListView Control
The Windows Forms ListView control can display icons from three image lists. The List, Details, and SmallIcon views display images from the image list specified in the SmallImageList property. The LargeIcon view displays images from the image list specified in the LargeImageList property. A list view can also display an additional set of icons, set in the StateImageList property, next to the large or small icons. For more information about image lists, see ImageList Component (Windows Forms) and How to: Add or Remove Images with the Windows Forms ImageList Component.

Inserted from How to: Display Icons for the Windows Forms ListView Control

like image 171
AMissico Avatar answered Sep 20 '25 06:09

AMissico