将图像设置为详细信息时,如何将图像添加到ListView?
最佳答案
例如:
ImageList imgList = new ImageList();
imgList.Images.AddStrip(bitmap);
this.listView1.StateImageList = imgList;
关于c# - 将图像设置为详细信息时如何将图像添加到ListView?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/3388025/