Add ListItemPropAndMethod.cs

This commit is contained in:
2024-07-19 08:37:25 -05:00
parent 542ee7ace1
commit f58dc1d7f3

11
ListItemPropAndMethod.cs Normal file
View File

@@ -0,0 +1,11 @@
// Change the ListItem Height
// This method will work with both the ListView and ObjectListView.
// Information was taken from: https://stackoverflow.com/questions/6563863/c-sharp-change-listview-items-rows-height
private void SetHeight(ListView listView, int height) {
ImageList imgList = new ImageList();
imgList.ImageSize = new Size(1, height);
listView.SmallImageList = imgList;
}
SetHeight(lvConnections, 25);