vote up 0 vote down star

Hi,

Can you tell me how to add an animation gif to a button in c#. Just by adding gif to resources and setting as button image didn't work very well (next frames apear over the previous ones). The problem seems to be in a way how c# is treating transparency but I don't know how to fix it.

Thanks in advance.

--- edit ---

After playing with the gif the issue was with transparency in gif. Next frame was drawn over the previous one so elements I wanted to become transparent in the middle of the animation just didn't do it properly (they still have the color of the previous frame). Solution was to create white areas on the next frame to cover the previous one. White was my transparent color so everything looked just fine after that :)

I hope someone will see it useful. Happy programming :)

flag

78% accept rate
Why are you doing this? – Greg D May 5 at 17:27
The button is a cancel button - animation on it should indicate the progress (it just should move so the user won't think the program crashed). Button is visible when background worker is working, and it's triggering cancelasync method. – kyrisu May 5 at 17:58
Don't you want a progressbar in marquee mode, then? I've seen apps that use the rotating animated gif (or whatever) and they almost invariably look amateurish b/c they don't properly adjust for newer OS theming. A progress bar will. – Greg D May 5 at 19:46
The animation is placed on the button and it fits application design. It is really simple so it should fit different OS theming, but of course if I won't be able to fix this issue I will turn to progress bar option:) – kyrisu May 6 at 11:01

3 Answers

vote up 1 vote down

In order to do this, you need to do the following:

  1. Set the BackGroundImageLayout property to Center. This property is set to Tile by default.

  2. Set the Image property of the button to your animated GIF.

This will work, since I tested it, and it worked for me.

EDIT: Designer code posted below:

 this.Button4.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
 this.Button4.Image = (System.Drawing.Image)resources.GetObject("Button4.Image");
 this.Button4.Location = new System.Drawing.Point(220, 329);
 this.Button4.Name = "Button4";
 this.Button4.Size = new System.Drawing.Size(81, 68);
 this.Button4.TabIndex = 4;
 this.Button4.Text = "Button4";
 this.Button4.UseVisualStyleBackColor = true;
link|flag
Unfortunately it didn't work for me. Maybe it's cause of the format of gif (cause when I add the resource on the preview the animation is also not the way it should be, but in browsers it works ok) – kyrisu May 5 at 18:09
Strange that it would not work for you. If you want to post the GIF online somewhere, I can take a look to see. – Jon May 5 at 18:21
Heres the link: wyslijto.pl/plik/b0p7cub92x Thanks :) – kyrisu May 5 at 18:36
You need to click on sms_sending3.gif on 2 pages. If you need I can put it on english website. – kyrisu May 5 at 18:39
I tried with your GIF, and it worked for me perfectly. I added my designer code up top. – Jon May 5 at 18:51
show 1 more comment
vote up 1 vote down

Hello. Just a note to everyone. Gif animation will play automaticaly if used on the .Image property but NOT on the .BackGroundImage one. Just in case someone is trying it that way.

link|flag
AND in Jon code: this.Button4.BackgroundImageLayout does not affect teh layout of .Image... because those are well different properties... – Renzo Jun 4 at 21:26
vote up 0 vote down check

I've got it to work.

1 of 2 things worked for me:

  1. I've reedited the gif adding property to every frame to undraw itself.

  2. I've changed the version of VS (I was using free professional student version, now I m using one from MSDN subscription)

Thanks for input guys. It guided me to conclusion that that it might be something wrong with VS itself not with my programming style :)

link|flag

Your Answer

Get an OpenID
or

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