how to thumbnail view in dialog

  • Thread starter Thread starter Kanaiya
  • Start date Start date
K

Kanaiya

hello
i want to show thumbnail image view control which display captured
images on this control but in small size. it is possible to add any no. of
images in that control. and aslo possible to add event on it.
 
Hi Kanaiya,

Please find replies inline.
i want to show thumbnail image view control which display captured
images on this control but in small size.

Actually, I am not sure of the methods/events exposed by this control.
Is there a specific third-party control that you are using -
you mentioned Image View Control ?.
it is possible to add any no. of
images in that control.

One suggestion is that you could add multiple PictureBox controls
dynamically in the form based on the number of images that you
want to display. Each PictureBox would be assigned a thumbnail
of the image to display using the Image property.
Also take a look at the SizeMode property for sizing the
thumbnail appropriately.
and aslo possible to add event on it.

You can add event handlers to the PictureBox control

Regards,
Aravind C
 
Back
Top