Page 1 of 1

SWAP 2 Images

Posted: Wed Nov 16, 2011 11:48 pm
by davidng
Hi everyone,

I am looking sample code to swap 2 images.

For example, When I select an image & press HOME key, the application will this image with 1st image in thumbnail viewer.

Thank you in advance for your thought & help on this.

David

Re: SWAP 2 Images

Posted: Thu Nov 17, 2011 12:09 am
by davidng
Hi,

Just want to clarify 1 thing: In a Thumbnail Viewer, I like to SWAP 2 images in Thumbnail Viewer.

Thanks.

Re: SWAP 2 Images

Posted: Thu Nov 17, 2011 8:50 am
by Alex
Hello David,

You need to use the Swap method of the ImageCollection class:

Code: Select all

ThumbnailViewer1.Images.Swap(0, 1)
Best regards, Alexander

Re: SWAP 2 Images

Posted: Thu Nov 17, 2011 5:58 pm
by davidng
Hi Alex,

It works. Thank you very much.