Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to show icons and text in Winforms ListView when View style is set to Details?

I just want to have 2 columns like:

Item                Value
[icon] Gold         10
[icon] Silver       2
[icon] Iron         1

Is this possible? Or do I need to have another column for the icons?

like image 350
Joan Venge Avatar asked Dec 16 '22 13:12

Joan Venge


1 Answers

Look the documentation for the SmallImageList of the ListView control and the ImageIndex and ImageKey properties of the ListViewItem class.

http://msdn.microsoft.com/en-us/library/system.windows.forms.listview.smallimagelist.aspx

like image 134
Xint0 Avatar answered May 16 '23 02:05

Xint0