Zooming in/out of Pictures in a PictureBox Control
C#
2
Posts
2
Posters
0
Views
1
Watching
-
Hi, Can someone please tell me how can I zoom in and out of an image that is displayed in a picture box control??? Please Help... Thanks, E.A.
As far as I know, the picturebox does not directly support such a thing. You would have to write custom code to scale the image from an offscreen source image, then reset the picture box .Image property. You could also write your own simple custom control that intrinsically supports image scaling, which would be more elegant and probably smoother.