我试图用图标和文字填充ListView(.View = View.LargeIcons)
这是我用于测试的代码:
this.LargeImageList = new ImageList();
this.LargeImageList.ImageSize = new System.Drawing.Size(64, 64);
this.LargeImageList.Images.Add(Program.ImgImportEntity);
this.Items.Add("Add 3D Model", 0);
this.Items.Add("Add 3D Model", 0);
this.Items.Add("Add 3D Model", 0);
this.Items.Add("Add 3D Model", 0);
this.Items.Add("Add 3D Model", 0);
this.Items.Add("Add 3D Model", 0);
this.Items.Add("Add 3D Model", 0);
这就是我得到的结果:
如您所见,第一张图片上方有一个边距
1个问题:为什么?所有边距都设置为0.感谢您的见解!
答案 0 :(得分:-1)
抱歉,我犯了一个错误,通过VS本身的Item Collection编辑器定义了一个项目。