What control type should I use - Image, MediaElement, etc??
feedback
|
|
I post a solution extending the image control and using the Gif Decoder. The constructor accepts an URI (it can be a packed uri). The gif decoder has a frames property. I animate the FrameIndex property. The event ChangingFrameIndex changes the source property to the frame corresponding to the FrameIndex (that is in the decoder). I guess that the gif has 10 frames per second.
| |||||||||||||||||||||
feedback
|
|
I, too, did a search and found several different solution in just one thread on the MSDN forums. The simplest to execute seems to be to use a WinForms Add a reference to System.Windows.Forms to your project first.
Then in the The | |||||||||
feedback
|
|
Here is my version of animated image control. You can use standard property Source for specifying image source. I further improved it. I am a russian, project is russian so comments are also in Russian. But anyway you should be able understand everything without comments. :)
| |||||||||||
feedback
|
|
I modified Mike Eshva's code,And I made it work better.You can use it with either 1frame jpg png bmp or mutil-frame gif.If you want bind a uri to the control,bind the UriSource properties or you want bind any in-memory stream that you bind the Source propertie which is a BitmapImage.
This is a costum control.you need create it in WPF App Project,and delete the Tempate override in style. | |||
|
feedback
|
|
How about this tiny app: Code behind:
XAML:
| |||
|
feedback
|
|
I had this issue, until I discovered that in WPF4, you can simulate your own keyframe image animations. First, split your animation into a series of images, title them something like "Image1.gif", "Image2,gif", and so on. Import those images into your solution resources. I'm assuming you put them in the default resource location for images. You are going to use the Image control. Use the following XAML code. I've removed the non-essentials.
| |||
feedback
|
|
Thanks for your post Joel, it helped me solve WPF's absence of support for animated GIFs. Just adding a little code since I had a heck of a time with setting the pictureBoxLoading.Image property due to the Winforms api. I had to set my animated gif image's Build Action as "Content" and the Copy to output directory to "Copy if newer" or "always". Then in the MainWindow() I called this method. Only issue is that when I tried to dispose of the stream, it gave me a red envelope graphic instead of my image. I'll have to solve that problem. This removed the pain of loading a BitmapImage and changing it into a Bitmap (which obviously killed my animation because it is no longer a gif).
| |||
|
feedback
|
|
Basically the same PictureBox solution above, but this time with the code-behind to use an Embedded Resource in your project: In XAML:
In Code-Behind:
| |||
|
feedback
|