在Windows窗体中的listView空间上填充图像

时间:2017-07-15 13:36:11

标签: c# winforms listview imagelist

是否可以在listView空间中填充图像,而不是在listView中占用单独的行。 我有一个imageList对象,它存储了所有需要的图像,并希望它填充listView中的空格。我已将imageList对象添加到smallImageList属性,并在拖放设计页面中将View属性更改为smallIcon。在行下方使用以显示listView。 listView1.Items.Add("",0); listView1.Items.Add("", 1); listView1.Items.Add("", 2); listView1.Items.Add("", 4);

由于

1 个答案:

答案 0 :(得分:0)

使用ListView控件无法做到这一点。相反,我建议使用FlowLayoutPanel。您可以在其上添加PictureBoxes,将它们设置为相同的大小。