FOR PRO ONLY

  • Thread starter Thread starter Kate Luu
  • Start date Start date
K

Kate Luu

Does any Pro out there know how to create an image or the picturebox in the
runtime with sizing handle, so the user can size and resize the image or
picturebox any way they want at runtime. Any help is deeply appreciated.
Thanks you all in advance...


Kate
 
You need to implement your own sizers - you can subclass
System.Windows.Forms.PictureBox and handle the OnPaint to draw your sizers;
handle the Mouse down/up events to track the sizers and resize during Mouse
Move.
 
Back
Top