I'm having a problem with the UI freezing while trying to dynamically add lots of images to a canvas.

what I'm doing is that when a button is pressed a lot of images should appear on the screen one by one as they are instantiated and added to canvas.Children, but the UI doesn't update until the function called by clicking the button is complete.

I thought about doing the work in a backgroundworker and using a dispatcher every 100ms to call a function adding one image to the canvas, but the UI still doesn't update until the function called by the button (where I start the backgroundworker) is completed

link|improve this question
are you reading the images from local memory or from an URL ? anyway try instantiating the images in a separate thread. – aka Nov 22 '11 at 23:54
it's local images. I tried instantiating them from the backgroundworker but got exceptions. Is it possible to do it from some other kind of thread? there is lots of images by the way. from 300 to a couple of thousand. But it's the same image. I'm using them to visualize a larger image – Henrik Myntti Nov 23 '11 at 8:58
feedback

1 Answer

Do you have some sample code? I did the same thing and it worked. I loaded the stream in the background. In the RunWorkerCompleted i did following:

            BitmapImage bitmap = new BitmapImage();
            bitmap.SetSource(stream);
            Image.Source = bitmap;

I loaded the next image when the previous was finished. It is not nessecary to wait 100ms. With 100 images it is already 10 seconds.

You can't set the bitmap source of an image in the background (Cross Thread Exception).

Greets

link|improve this answer
I got it to work. I don't know what was wrong, but I got the backgroundworker to work. Now my problem is that the fps of the applications drops to 0 after about 50 images. even a lousy jpeg was too much to render. Thanks for the replies! – Henrik Myntti Dec 7 '11 at 14:26
Did you set the cachemode? Greets – Dusty Dec 8 '11 at 8:49
feedback

Your Answer

 
or
required, but never shown

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