Fade Images

  • Thread starter Thread starter vijay_3491
  • Start date Start date
V

vijay_3491

Hi,

I draw some images on my canvas using Graphics.DrawImage() in a
component class. After the canvas gets loaded I would like to apply
some animations to the images. Is there any event where I can do this
apart from paint event?

Pls help. Thanks in advance.
 
I draw some images on my canvas using Graphics.DrawImage() in a
component class. After the canvas gets loaded I would like to apply
some animations to the images. Is there any event where I can do this
apart from paint event?

No, but you can create your own for the purpose. Easiest would be to use
a System.Windows.Forms.Timer object to raise an event at specific
intervals. This is often sufficient for basic animation needs.

Pete
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top