vote up 2 vote down star
1

Hello,

I would like to display an animated gif on a .NET Compact Form. Currently I use a PictureBox control and toggle between .Visible = true and .Visible = false.

After .Visible = true the gif is shown however it's not animated. How can I get the .NET Compact Framework to animate it?

I already tried this but it doesn't work.

flag

56% accept rate

1 Answer

vote up 4 vote down check

By default the .Net Compact framework does not support displaying GIF based animations on a Windows Form. It is possbile to code up a custom animator that will essentially do the same. Here's a link to a sample class for displaying a GIF on the compact framework.

http://msdn.microsoft.com/en-us/library/aa446483.aspx

link|flag
It is a pain to extract the single frames but at least it works. Thanks. – Tobias Nov 17 '08 at 22:54

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.