I want to change the Item\'s/Row\'s height in listview.
I searched every where and I figured that in order to change the height I need to use LBS_OWNERDRAWFIXE
You have to use a bit of a hack. The trick is to use an image list in the StateImageList property. The ListView will adjust its item height, based on the height of the ImageList's ImageSize property. You do not have to specify an image for your items, but just using the StateImageList will force the ListView to adjust. In the example below, I had set the image list size to 32x32, thus resulting in a 32px height ListViewItem(s).