I have a PictureBox control where the user can doodle. It works great until the control gets refreshed. I solved this problem by doing the following:
Then anytime anything was draw to the PictureBox I called:
pbPostIt.Invalidate()
This worked fine until the PictureBox gets re-sized. Is there a way to copy the existing Image into the newly re-sized PictureBox?