How to add Images to Listview (C# WinForm)?
My problem is that I have to insert 3 images to Listview in column 1,2 and 8 like this image below.
My code:
ListViewItem lvi = new ListViewItem();
//do something to add Image 1
//do something to add Image 2
lvi.SubItems.Add("Sell");
lvi.SubItems.Add("100");
lvi.SubItems.Add("ABC");
lvi.SubItems.Add("10,99");
lvi.SubItems.Add("OK");
//do something to add Image 3
listView1.Items.Add(lvi);
Any recommendation will be highly appreciated.