C# adding multiple images to same column in objectlistview
问题 I try to add image to my first column(it might be change to another column later, it's in first column for now), so far I have do if (item.Index == 0) { item.ImageGetter = delegate (object RowObj) { return ((RowObjectModel)RowObj).ImageToShow.ToString(); }; } this part at start, I use a custom headerstyle and apply it on constructor while I do that I also do ImageGetter part. I also set my SmallImageList like this ImageList IList = new ImageList(); IList.Images.Add("MyIcon", Properties