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