0

I have added Picture Box(win form) in WPF. when I assign pic box embedded gif image from resx file it doesn't animate while image from disk does animate. Any solution? I want embedded image to animate.

Zain Malik
  • 141
  • 3
  • 12
  • possible duplicate of [How do I get an animated gif to work in WPF?](http://stackoverflow.com/questions/210922/how-do-i-get-an-animated-gif-to-work-in-wpf) – Stewbob Oct 30 '14 at 18:35

1 Answers1

0

Short answer: You can't out of the box.
Use the Animated GIF in WPF component instead.

Jaster
  • 8,255
  • 3
  • 34
  • 60
  • Note that some claim you can using `MediaElement` (see Stewbob's link). I tried it myself and it almost worked, but only displayed the first four frames of the GIF I tested with. – Peter Duniho Oct 30 '14 at 23:27