pedram
pedram

Reputation: 3767

How can I add image to ListView when I set it to details?

How can I add image to ListView when I set it to details ?

Upvotes: 3

Views: 3508

Answers (2)

Arseny
Arseny

Reputation: 7351

for instance:

  ImageList imgList = new ImageList();
  imgList.Images.AddStrip(bitmap);
  this.listView1.StateImageList = imgList;

Upvotes: 2

thelost
thelost

Reputation: 6694

This might answer your question.

Upvotes: 1

Related Questions