Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Change Listview item height

I need to make more room between each list item. Is it possible to change Listview item height in Delphi?

like image 517
Peacelyk Avatar asked Apr 06 '11 16:04

Peacelyk


1 Answers

What mode is your TListView in? (There are 4, and things change for different modes - that's why there are different modes in the first place.)

Since you're asking about height, I'm guessing you're in vsList mode. In this case, the height of each row is determined by the height of the SmallImages Imagelist. You can change the row height by assigning taller images to that ImageList.

like image 59
Ken White Avatar answered Sep 22 '22 09:09

Ken White