vote up 1 vote down star

I wanted to make the listview show thumbnails only when the items are visible on the screen. Is there a way to do this?

flag

55% accept rate
what do you mean by that ? – eugeneK Nov 15 at 8:17
what i mean is when you have a listview that has like about 1000 images to thumb, the thumbing starts at the first index up to the last and then you feel like viewing the last item/last index, then that means you have to wait for the other items to thumb first before you can actually see the thumb of the last item, so if there is a way to thumb only the items that you are currently viewing then you don't have to wait for the other 999 items... – murasaki5 Nov 15 at 8:46

2 Answers

vote up 2 vote down check

You can do this by using a ListView in virtual mode, and then adding your generated thumbnails to the LargeImageList during the RetrieveVirtualItem event (if they are not already there).

If you wanted most of the work done for you, you could use a FastObjectListView from the ObjectListView project (an open source wrapper around .NET WinForms ListView) and then follow this recipe on how to use images loaded from a database. Your images, of course, would be thumbnails created from the source rather than images from a database but the logic is the same.

link|flag
thanks this one works. – murasaki5 Nov 16 at 0:14
vote up 1 vote down

See an excellent implementation of what your after on CodeProject

link|flag
that link on codeproject was an overkill, It is fine with me to have a slow generation of thumb my concern is only to find a way to thumb only the items that i'm currently viewing like how vista explorer do which only thumbs the item that currently is visible. But anyway thanks for the link i'll try to study the source code for now. – murasaki5 Nov 15 at 8:57

Your Answer

Get an OpenID
or
never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.