I have a program that gathers some items and shows them as a list view, on my system it looks like this:
And on another computer it looks like this:
The relevant code for how I display items is as follows:
lvItems.View = View.LargeIcon;
lvItems.LargeImageList = imageList1;
And my imageSize is set to 64,64 for imageList1.
The tilesize property only affects the tile view and I tried that shortly but didn't like how it puts text on the right.
What would account for this difference between systems and how can I override it to get a consistent display?