Reputation: 3767
How can I add image to ListView when I set it to details ?
Upvotes: 3
Views: 3508
Reputation: 7351
for instance:
ImageList imgList = new ImageList();
imgList.Images.AddStrip(bitmap);
this.listView1.StateImageList = imgList;
Upvotes: 2