Egon
Egon

Reputation: 3848

does a windows application in C# support gif annimation?

Is this possible ? if yes how ? I am creating a windows application, which makes multiple web queries. I want the interface to have a loading symbol, so that the user doesn't feel that the screen has frozen. Thank you.

Upvotes: 2

Views: 683

Answers (2)

Byron Whitlock
Byron Whitlock

Reputation: 53861

You should use the standard progress bar control.

Upvotes: 1

Fabio
Fabio

Reputation: 3120

Yes, I've already done it. Just use a PictureBox control, and set the gif image on it.

Upvotes: 2

Related Questions