ListView.View = View.LargerIcons;?
I have a WinFo开发者_JS百科rms .Net 2.o app with a ListView
in it and i'm trying to show some thumbnails. I set the listView.View
-property to View.LargeIcon
, but that's not big enough. I would like to have thumbnails about 250x180. Is this possible? And if, how?
Yes, edit the ImageList you use for the ListView.LargeImageList property. Set its ImageSize to 250x180.
精彩评论