C# ListView添加行距 源代码
ListView添加行距
一、问题
listview控件,可以实现增大行距吗?行与行太紧了,不好看呀。
有办法可以实现吗?
我不想通过加大字体的方法,因为字体大了,行距还是近呀。
我要的是增大行间距。
二、解决方法:
//
// imageList1
//
this.imageList1.ImageSize = new System.Drawing.Size(2, 30);
this.imageList1.TransparentColor = System.Drawing.Color.Transparent;
this.listView1.SmallImageList = this.imageList1;
1