-
June 5th, 2005, 09:14 AM
#1
Setting Row Height of ListView
How do I set the height of the rows in a list view?
I don't want to change the size of the font.
-
September 2nd, 2005, 12:46 AM
#2
Re: Setting Row Height of ListView
use image list and set its image size.
this.HeightControlImageList = new System.Windows.Forms.ImageList(this.components);
this.HeightControlImageList.ImageSize = new System.Drawing.Size(1, 18);
this.HeightControlImageList.TransparentColor = System.Drawing.Color.Transparent;
listView1.SmallImageList = this.HeightControlImageList;
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|