Image Animation

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have a picturebox on a form. I have set its image property to an animated GIF at design time. The image animates during design time and when the application is running. However, when I dispose of the form object, an ImageAnimator thread from System.Drawing.ImageAnimator.ThreadProcImpl remains. How can I terminate this thread

Thanks in advance...
 
The easy way is to "clear" the picture box when the app closes. That should
kill the animation thread.

Peter said:
I have a picturebox on a form. I have set its image property to an
animated GIF at design time. The image animates during design time and when
the application is running. However, when I dispose of the form object, an
ImageAnimator thread from System.Drawing.ImageAnimator.ThreadProcImpl
remains. How can I terminate this thread?
 
Back
Top